1 | <?php |
||
13 | class ParseException extends \RuntimeException { |
||
14 | /** |
||
15 | * Construct the exception. Note: The message is NOT binary safe. |
||
16 | * |
||
17 | * @link http://php.net/manual/en/exception.construct.php |
||
18 | * |
||
19 | * @param string $message [optional] The Exception message to throw. |
||
20 | * @param int $code [optional] The Exception code. |
||
21 | * @param Exception $previous [optional] The previous exception used for the exception chaining. Since 5.3.0 |
||
22 | * |
||
23 | * @since 5.1.0 |
||
24 | */ |
||
25 | 6 | public function __construct($message = "", $code = 0, Exception $previous = null) { |
|
28 | } |