b05d3162eeb4c89f33e8516dad0ca45162c2adb2
[zf2.biz/application_blanche.git] / module / Application / views / error / index.phtml
1 <h1>An error occurred</h1>
2 <h2><?php echo $this->message ?></h2>
3
4 <?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
5
6 <?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
7
8 <h3>Exception information:</h3>
9 <p>
10     <h3>Stack trace:</h3>
11     <pre><?php echo $this->exception->getTraceAsString() ?></pre>
12 </p>
13
14 <?php else: ?>
15
16 <h3>No Exception available</h3>
17
18 <?php endif ?>
19
20 <?php endif ?>