File indexing completed on 2024-05-12 05:56:56

0001 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
0002 <html xmlns="http://www.w3.org/1999/xhtml">
0003 <head>
0004   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
0005   <title>Zend Framework Default Application</title>
0006 </head>
0007 <body>
0008   <h1>An error occurred</h1>
0009   <h2><?php echo $this->message ?></h2>
0010 
0011   <?php if (isset($this->exception)): ?>
0012   
0013   <h3>Exception information:</h3>
0014   <p>
0015       <b>Message:</b> <?php echo $this->exception->getMessage() ?>
0016   </p>
0017 
0018   <h3>Stack trace:</h3>
0019   <pre><?php echo $this->exception->getTraceAsString() ?>
0020   </pre>
0021 
0022   <h3>Request Parameters:</h3>
0023   <pre><?php echo $this->escape(var_export($this->request->getParams(), true)) ?>
0024   </pre>
0025 
0026   <?php endif ?>
0027 
0028 </body>
0029 </html>