| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class ClassNotFoundException extends ApplicationException |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * constructor |
||
| 16 | */ |
||
| 17 | public function __construct($message = null) |
||
| 18 | { |
||
| 19 | parent::__construct($message, 500, $this); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * method missing |
||
| 24 | */ |
||
| 25 | public function __call($name, $arguments) |
||
| 26 | { |
||
| 27 | throw $this; |
||
| 28 | } |
||
| 30 |