Added headLink, headMeta, and headScript to layout for added flexibility
[zf2.biz/application_blanche.git] / modules / Application / views / error / index.phtml
1 <h1>An error occurred</h1>
2 <h2><?php echo $this->message ?></h2>
3
4 <?php if (isset($this->exception)): ?>
5
6 <h3>Exception information:</h3>
7 <p>
8     <b>Message:</b> <?php echo $this->exception->getMessage() ?>
9 </p>
10
11 <h3>Stack trace:</h3>
12 <pre><?php echo $this->exception->getTraceAsString() ?></pre>
13
14 <?php endif ?>