| 1 | <?php |
||
| 13 | class ErrorException extends \RuntimeException |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @param string $massage |
||
| 17 | * @param int $code |
||
| 18 | * |
||
| 19 | * @return ErrorException |
||
| 20 | */ |
||
| 21 | 1 | public static function failed($massage, $code) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $massage |
||
| 32 | * @param int $code |
||
| 33 | * |
||
| 34 | * @return ErrorException |
||
| 35 | */ |
||
| 36 | 1 | public static function invalidResponse($massage, $code) |
|
| 40 | } |
||
| 41 |