blob: 290316046f90743ce8aca19e3aab306cf9ed0496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace JsonRPC\Exception;
/**
* Class ServerErrorException
*
* @package JsonRPC\Exception
* @author Frederic Guillot
*/
class ServerErrorException extends RpcCallFailedException
{
}
|