Files
webservice/Lib/Exception/AuthenticationException.php
2015-06-19 11:13:51 +02:00

16 lines
358 B
PHP

<?php
namespace BSR\Lib\Exception;
/**
* This exception should be raised when an error
* related to the authentication mechanism arise.
*
* @package BSR\Lib\Exception
*/
class AuthenticationException extends WebException {
const USER_NOT_FOUND = 200;
const BAD_LOGIN = 201;
const AUTHENTICATION_FAILED = 202;
const LOGIN_EMPTY = 203;
}