| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace nyx\console\input\exceptions; |
||
| 26 | public function __construct(Arguments $arguments, string $message = null, int $code = 0, \Exception $previous = null) |
||
| 27 | { |
||
| 28 | $this->arguments = $arguments; |
||
| 29 | |||
| 30 | // Proceed to create the base Exception. |
||
| 31 | parent::__construct($message, $code, $previous); |
||
| 32 | } |
||
| 33 | |||
| 44 |