2020-05-27 18:46:16 +02:00
|
|
|
An uncaught Exception was encountered
|
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
Type: <?= get_class($exception), "\n" ?>
|
|
|
|
Message: <?= $message, "\n" ?>
|
|
|
|
Filename: <?= $exception->getFile(), "\n" ?>
|
|
|
|
Line Number: <?= $exception->getLine() ?>
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === true): ?>
|
2020-08-04 11:25:22 +00:00
|
|
|
Backtrace:
|
|
|
|
<?php foreach ($exception->getTrace() as $error): ?>
|
|
|
|
<?php if (isset($error['file'])): ?>
|
|
|
|
<?= trim(
|
|
|
|
'-' .
|
|
|
|
$error['line'] .
|
|
|
|
' - ' .
|
|
|
|
$error['file'] .
|
|
|
|
'::' .
|
|
|
|
$error['function']
|
|
|
|
) . "\n" ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-10-22 17:41:59 +00:00
|
|
|
<?php endif;
|
|
|
|
?>
|