| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class ContextException extends \Exception implements ContextExceptionInterface |
||
| 16 | { |
||
| 17 | use ContextExceptionTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Instantiate an exception |
||
| 21 | * |
||
| 22 | * @param string $message |
||
| 23 | * @param int $code |
||
| 24 | * @param null|\Throwable $previous |
||
| 25 | * @param array $context |
||
| 26 | */ |
||
| 27 | public function __construct(string $message = '', int $code = 0, ? \Throwable $previous = null, array $context = []) |
||
| 34 |