1 | <?php namespace nyx\console\input\exceptions; |
||
14 | class InvalidArguments extends InvalidParameters |
||
15 | { |
||
16 | /** |
||
17 | * @var Arguments The Input Arguments which caused the Exception. |
||
18 | */ |
||
19 | private $arguments; |
||
20 | |||
21 | /** |
||
22 | * {@inheritDoc} |
||
23 | * |
||
24 | * @param Arguments $arguments The Input Arguments which caused the Exception. |
||
25 | */ |
||
26 | public function __construct(Arguments $arguments, string $message = null, int $code = 0, \Exception $previous = null) |
||
33 | |||
34 | /** |
||
35 | * Returns the Input Arguments which caused the Exception. |
||
36 | * |
||
37 | * @return Arguments |
||
38 | */ |
||
39 | public function getArguments() : Arguments |
||
43 | } |
||
44 |