1 | <?php |
||
16 | class Event extends BaseEvent |
||
17 | { |
||
18 | private $exception; |
||
19 | |||
20 | /** |
||
21 | * Set exception. |
||
22 | * |
||
23 | * @param \Exception $exception |
||
24 | */ |
||
25 | public function setException(\Exception $exception) |
||
29 | |||
30 | /** |
||
31 | * Get exception. |
||
32 | * |
||
33 | * @return \Exception |
||
34 | */ |
||
35 | public function getException() |
||
39 | } |
||
40 |