Improved error page +++
This commit is contained in:
parent
142f05b416
commit
3bd5b2c718
2 changed files with 6 additions and 6 deletions
|
|
@ -7,11 +7,10 @@
|
|||
/** @var $exception \Exception */
|
||||
?>
|
||||
<div class="box-body">
|
||||
<?= $exception->getMessage(); ?><br />
|
||||
File: <?= $exception->getFile(); ?><br />
|
||||
Line: <?= $exception->getLine(); ?>
|
||||
<pre>
|
||||
<?= $exception->getTraceAsString(); ?>
|
||||
</pre>
|
||||
<strong>Message</strong>: <?= $exception->getMessage(); ?><br />
|
||||
<strong>File</strong>: <?= $exception->getFile(); ?><br />
|
||||
<strong>Line</strong>: <?= $exception->getLine(); ?><br />
|
||||
<strong>Trace</strong>:
|
||||
<pre style="white-space: pre-wrap"><?= $exception->getTraceAsString(); ?></pre>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue