| 1 | <?php |
||
| 8 | class BadResponseCode extends Exception |
||
| 9 | { |
||
| 10 | /** @var \Facade\FlareClient\Http\Response */ |
||
| 11 | public $response; |
||
| 12 | |||
| 13 | /** @var array */ |
||
| 14 | public $errors; |
||
| 15 | |||
| 16 | public static function createForResponse(Response $response) |
||
| 28 | |||
| 29 | public static function getMessageForResponse(Response $response) |
||
| 33 | } |
||
| 34 |