1 | <?php |
||
13 | class MissingArgumentException extends ContainerException { |
||
14 | private $arg; |
||
15 | private $function; |
||
16 | |||
17 | /** |
||
18 | * MissingArgumentException constructor. |
||
19 | * |
||
20 | * @param string $arg The name of the missing parameter. |
||
21 | * @param string $function The name of the function being called, but can be empty when not known. |
||
22 | */ |
||
23 | 2 | public function __construct($arg, $function = '') { |
|
35 | } |
||
36 |