| 12345678910111213141516171819 |
- <?php
- /**
- * @link http://cakephp.org CakePHP(tm) Project
- * @package app.View.Errors
- * @since CakePHP(tm) v 0.10.0.1076
- */
- ?>
- <h2><?php echo $message; ?></h2>
- <p class="error">
- <strong><?php echo __d('cake', 'Error'); ?>: </strong>
- <?php printf(
- __d('cake', 'The requested address %s was not found on this server.'),
- "<strong>'{$url}'</strong>"
- ); ?>
- </p>
- <?php
- if (Configure::read('debug') > 0):
- echo $this->element('exception_stack_trace');
- endif;
|