16 lines
222 B
PHP
16 lines
222 B
PHP
|
<?php
|
||
|
|
||
|
namespace JsonRPC\Exception;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
/**
|
||
|
* Class AuthenticationFailureException
|
||
|
*
|
||
|
* @package JsonRPC\Exception
|
||
|
* @author Frederic Guillot
|
||
|
*/
|
||
|
class AuthenticationFailureException extends Exception
|
||
|
{
|
||
|
}
|