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