mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
19 lines
745 B
PHP
19 lines
745 B
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed') ?>
|
|
|
|
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']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
|
|
File: <?= $error['file'], "\n" ?>
|
|
Line: <?= $error['line'], "\n" ?>
|
|
Function: <?= $error['function'], "\n\n" ?>
|
|
<?php endif ?>
|
|
<?php endforeach ?>
|
|
<?php endif ?>
|