changed namespace from BSR\Lib to BSR\Webservice
parent
3d0d4fef67
commit
92e6435312
@ -1,16 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace BSR\Lib\Exception;
|
namespace BSR\Webservice\Exception;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This exception should be raised when an error
|
* This exception should be raised when an error
|
||||||
* related to the authentication mechanism arise.
|
* related to the authentication mechanism arise.
|
||||||
*
|
*
|
||||||
* @package BSR\Lib\Exception
|
* @package BSR\Webservice\Exception
|
||||||
*/
|
*/
|
||||||
class AuthenticationException extends WebException {
|
class AuthenticationException extends WebException {
|
||||||
const USER_NOT_FOUND = 200;
|
const USER_NOT_FOUND = 200;
|
||||||
const BAD_LOGIN = 201;
|
const BAD_LOGIN = 201;
|
||||||
const AUTHENTICATION_FAILED = 202;
|
const AUTHENTICATION_FAILED = 202;
|
||||||
const LOGIN_EMPTY = 203;
|
const LOGIN_EMPTY = 203;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue