<?php
/**
* ArangoDB PHP client: connect exception
*
* @package ArangoDbPhpClient
* @author Jan Steemann
* @copyright Copyright 2012, triagens GmbH, Cologne, Germany
*/
namespace triagens\ArangoDb;
/**
* This exception type will be thrown by the client when there is an error
* during connecting to the server
*
* @package ArangoDbPhpClient
*/
class ConnectException extends Exception {
/**
* Return a string representation of the exception
*
* @return string - string representation
*/
public function __toString() {
return __CLASS__ . ': ' . $this->getMessage();
}
}