Improved error page
This commit is contained in:
parent
42a9d7fc94
commit
a671f4d81d
2 changed files with 10 additions and 2 deletions
|
|
@ -3,7 +3,15 @@
|
|||
<h2 class="box-title">Sorry, there was a problem</h2>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
/** @var $exception \Exception */
|
||||
?>
|
||||
<div class="box-body">
|
||||
<?php print $exception->getMessage(); ?>
|
||||
<?= $exception->getMessage(); ?><br />
|
||||
File: <?= $exception->getFile(); ?><br />
|
||||
Line: <?= $exception->getLine(); ?><br />
|
||||
<pre>
|
||||
<?= $exception->getTraceAsString(); ?>
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue