| Name | Size | Mode | Actions |
|---|---|---|---|
| ClassNotFoundException.php | 882 | 0664 | editdlrm |
| ContextErrorException.php | 1097 | 0664 | editdlrm |
| FatalErrorException.php | 2866 | 0664 | editdlrm |
| FatalThrowableError.php | 1107 | 0664 | editdlrm |
| FlattenException.php | 7094 | 0664 | editdlrm |
| OutOfMemoryException.php | 424 | 0664 | editdlrm |
| SilencedErrorContext.php | 1374 | 0664 | editdlrm |
| UndefinedFunctionException.php | 865 | 0664 | editdlrm |
| UndefinedMethodException.php | 860 | 0664 | editdlrm |
/var/www/vhosts/nabawater/vendor/symfony/debug/Exception/FatalThrowableError.php (1107B)
*/ class FatalThrowableError extends FatalErrorException { public function __construct(\Throwable $e) { if ($e instanceof \ParseError) { $message = 'Parse error: '.$e->getMessage(); $severity = E_PARSE; } elseif ($e instanceof \TypeError) { $message = 'Type error: '.$e->getMessage(); $severity = E_RECOVERABLE_ERROR; } else { $message = $e->getMessage(); $severity = E_ERROR; } \ErrorException::__construct( $message, $e->getCode(), $severity, $e->getFile(), $e->getLine(), $e->getPrevious() ); $this->setTrace($e->getTrace()); } }