1 | <?php |
||
12 | final class FaultException extends \RuntimeException implements Exception |
||
13 | { |
||
14 | /** |
||
15 | * @param string $faultString |
||
16 | * @param int $faultCode |
||
17 | */ |
||
18 | 6 | public function __construct($faultString, $faultCode) |
|
22 | |||
23 | /** |
||
24 | * Creates a FaultException from XML-RPC response. |
||
25 | * |
||
26 | * @param array $response |
||
27 | * |
||
28 | * @return FaultException |
||
29 | */ |
||
30 | 2 | public static function createFromResponse(array $response) |
|
37 | } |
||
38 |