error handler improvements
[simplicity.git] / source / lib / simplicity / core / error / templates / default.phtml
blob8127d57890e1990a65f8548d86762a9ba2fd133a
1 <h1><?php echo $this->exception->getMessage(); ?></h1>
3 <h2>File</h2>
4 <p><?php echo $this->exception->getFile(); ?> on line <?php echo $this->exception->getLine(); ?></p>
6 <h2>Trace</h2>
7 <pre><?php print_r($this->exception->getSafeTrace()); ?></pre>
9 <h2>Context</h2>
10 <pre><?php print_r($this->exception->getContext()); ?></pre>
12 <h2>Headers</h2>
13 <pre><?php print_r($this->exception->getHeaders()); ?></pre>