| Name | Size | Mode | Actions |
|---|---|---|---|
| ClassNotFoundException.php | 1206 | 0644 | editdlrm |
| FatalErrorException.php | 2978 | 0644 | editdlrm |
| FatalThrowableError.php | 1319 | 0644 | editdlrm |
| FlattenException.php | 9690 | 0644 | editdlrm |
| OutOfMemoryException.php | 735 | 0644 | editdlrm |
| SilencedErrorContext.php | 1720 | 0644 | editdlrm |
| UndefinedFunctionException.php | 1201 | 0644 | editdlrm |
| UndefinedMethodException.php | 1190 | 0644 | editdlrm |
/home/techb158/exp.abdallabala.com/vendor/symfony/debug/Exception/FatalThrowableError.php (1319B)
* * @deprecated since Symfony 4.4 */ class FatalThrowableError extends FatalErrorException { private $originalClassName; public function __construct(\Throwable $e) { $this->originalClassName = get_debug_type($e); if ($e instanceof \ParseError) { $severity = \E_PARSE; } elseif ($e instanceof \TypeError) { $severity = \E_RECOVERABLE_ERROR; } else { $severity = \E_ERROR; } \ErrorException::__construct( $e->getMessage(), $e->getCode(), $severity, $e->getFile(), $e->getLine(), $e->getPrevious() ); $this->setTrace($e->getTrace()); } public function getOriginalClassName(): string { return $this->originalClassName; } }