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