1 | <?php |
||
18 | class DirectAdminException extends \RuntimeException |
||
19 | { |
||
20 | /** |
||
21 | * Construct the exception object. |
||
22 | * |
||
23 | * @param string $message The Exception message to throw |
||
24 | * @param int $code The Exception code |
||
25 | * @param \Exception|null $previous The previous exception used for the exception chaining. Since 5.3.0 |
||
26 | */ |
||
27 | public function __construct($message = '', $code = 0, \Exception $previous = null) |
||
31 | } |
||
32 |