Files
easyappointments/application/views/errors/html/error_exception.php
xavor 8c4798a5fd
Some checks failed
CI / build-test (push) Has been cancelled
first commit
2025-05-31 18:56:37 +02:00

75 lines
1.3 KiB
PHP

<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<?php
/**
* @var Throwable $exception
* @var string $message
*/
?>
<div style="
border: 1px solid #dfdfdf;
margin: 0 0 10px 0;
padding: 15px;
font-size: 14px;
">
<h4>
An uncaught Exception was encountered
</h4>
<h6>
Type
</h6>
<p>
<?= get_class($exception) ?>
</p>
<h6>
Message
</h6>
<p>
<?= $message ?>
</p>
<h6>
Filename
</h6>
<p>
<?= $exception->getFile() ?>
</p>
<h6>
Line Number
</h6>
<p>
<?= $exception->getLine() ?>
</p>
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === true): ?>
<h6>
Backtrace
</h6>
<?php foreach ($exception->getTrace() as $error): ?>
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
<p style="margin-left:10px">
File: <?= $error['file'] ?><br>
Line: <?= $error['line'] ?><br>
Function: <?= $error['function'] ?>
</p>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
</div>