1 | <?php |
||
15 | class AdapterException extends ModelException |
||
16 | { |
||
17 | /** |
||
18 | * @var Exception |
||
19 | */ |
||
20 | private $exception; |
||
21 | |||
22 | /** |
||
23 | * Sets the underlying exception. |
||
24 | * |
||
25 | * @param Exception $e |
||
26 | */ |
||
27 | public function setException(Exception $e) |
||
31 | |||
32 | /** |
||
33 | * Gets the underlying exception. |
||
34 | * |
||
35 | * @return Exception |
||
36 | */ |
||
37 | public function getException() |
||
41 | } |
||
42 |