for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Anax\Common;
/**
* Anax class for wrapping sessions.
*
*/
class ConfigurationException extends \Exception
{
* Construct.
* @param string $message the Exception message to throw.
* @param int $code the Exception code.
* @param Exception previous the previous exception used for the exception chaining.
public function __construct($message = "", $code = 0, $previous = null)
parent::__construct($message, $code, $previous);
}