You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
358 B
PHP
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;
|
|
} |