mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
20 lines
551 B
PHP
20 lines
551 B
PHP
An uncaught Exception was encountered
|
|
|
|
Type: <?= get_class($exception), "\n" ?>
|
|
Message: <?= $message, "\n" ?>
|
|
Filename: <?= $exception->getFile(), "\n" ?>
|
|
Line Number: <?= $exception->getLine() ?>
|
|
|
|
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === true): ?>
|
|
|
|
Backtrace:
|
|
<?php foreach ($exception->getTrace() as $error): ?>
|
|
<?php if (isset($error['file'])): ?>
|
|
<?= trim(
|
|
'-' . $error['line'] . ' - ' . $error['file'] . '::' . $error['function']
|
|
) . "\n" ?>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
|
|
<?php endif; ?>
|