1 | <?php |
||
28 | class PhpException extends CoreException |
||
29 | { |
||
30 | |||
31 | |||
32 | // <editor-fold desc="// = = = = P U B L I C C O N S T R U C T O R = = = = = = = = = = = = = = = = = = = = ="> |
||
33 | |||
34 | /** |
||
35 | * Init's a new instance. Don't use it inside you're code! |
||
36 | * |
||
37 | * @param string $message The error message. |
||
38 | * @param integer $code The error code. |
||
39 | * @param integer $line The error line. |
||
40 | * @param string $file The error file. |
||
41 | */ |
||
42 | 1 | public function __construct( string $message, int $code, int $line, string $file ) |
|
55 | |||
56 | // </editor-fold> |
||
57 | |||
58 | |||
59 | } |
||
60 | |||
61 |