* @package Mammut\Auth */ class AuthenticationException extends \Exception { /** * Generic authentication error */ const ERR_AUTH_ERROR = 6501; /** * User is unknown to the backend */ const ERR_UNK_USER = 6502; /** * Could not identify user cause of an error in the backend */ const ERR_BACKEND = 6503; public function __construct($error, $code = -1, $previous = NULL) { parent::__construct($error, $code, $previous); } }