1 | <?php |
||
7 | class TimeoutException extends Exception |
||
8 | { |
||
9 | /** |
||
10 | * The output returned from the operation. |
||
11 | * |
||
12 | * @var array |
||
13 | */ |
||
14 | public $output; |
||
15 | |||
16 | /** |
||
17 | * Create a new exception instance. |
||
18 | * |
||
19 | * @param $output |
||
20 | */ |
||
21 | public function __construct($output) |
||
27 | |||
28 | /** |
||
29 | * The output returned from the operation. |
||
30 | * |
||
31 | * @return array |
||
32 | */ |
||
33 | public function output() |
||
37 | } |
||
38 |