| 1 | <?php |
||
| 17 | class ResponseExceptionEvent extends ResponseEvent |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var \Exception |
||
| 21 | */ |
||
| 22 | private $exception; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Set exception. |
||
| 26 | * |
||
| 27 | * @param \Exception $exception |
||
| 28 | */ |
||
| 29 | public function setException(\Exception $exception) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get exception. |
||
| 36 | * |
||
| 37 | * @return \Exception |
||
| 38 | */ |
||
| 39 | public function getException() |
||
| 43 | } |
||
| 44 |