1 | <?php |
||
23 | class MissingRequiredParameterException extends Exception |
||
24 | { |
||
25 | /** |
||
26 | * Creates the exception, populating its error message from class |
||
27 | * and property names |
||
28 | * |
||
29 | * @param string $class The classname of the method |
||
30 | * @param string $parameter The name of the missing parameter |
||
31 | * @param Throwable The exception which caused this |
||
32 | */ |
||
33 | public function __construct |
||
48 | } |
||
49 |