1 | <?php |
||
5 | class WorkEtcException extends \Exception |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $defaultMessage = 'Unknown error.'; |
||
11 | |||
12 | /** |
||
13 | * @param array $response |
||
14 | */ |
||
15 | public function __construct(array $response) |
||
21 | |||
22 | /** |
||
23 | * Attempt to extract the core message and encode the rest. |
||
24 | * |
||
25 | * @param array $response |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | protected function buildMessage(array $response): string |
||
39 | } |
||
40 |