1afb8661fa1a833ac77de89b463d125b4e00970e
[zf2.biz/application_blanche.git] / module / Application / view / error / 404.phtml
1 <h1>A 404 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     <h4>Message:</h4>
11     <pre><?php echo $this->exception->getMessage() ?></pre>
12     <h4>Stack trace:</h4>
13     <pre><?php echo $this->exception->getTraceAsString() ?></pre>
14 </p>
15
16 <?php else: ?>
17
18 <h3>No Exception available</h3>
19
20 <?php endif ?>
21
22 <?php endif ?>