| 1 | <?php |
||
| 8 | class GetExceptionResponseEvent extends RpcResponseEvent |
||
| 9 | { |
||
| 10 | /** @var \Exception */ |
||
| 11 | private $exception; |
||
| 12 | |||
| 13 | 5 | public function __construct(HttpKernelInterface $kernel, RpcRequestInterface $request, \Exception $exception) |
|
| 18 | |||
| 19 | /** @return \Exception */ |
||
| 20 | 5 | public function getException() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param \Exception $exception |
||
| 27 | */ |
||
| 28 | public function setException($exception) |
||
| 32 | } |
||
| 33 |