| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class DelegationException extends Exception |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $exception; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $exception |
||
| 27 | */ |
||
| 28 | public function setException($exception) |
||
| 29 | { |
||
| 30 | $this->exception = $exception; |
||
| 31 | |||
| 32 | return $this; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getException() |
||
| 41 | } |
||
| 42 | } |
||
| 43 |