Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<?php
2
/**
3
 *
4
 *
5
 * @link          http://cakephp.org CakePHP(tm) Project
6
 * @package       app.View.Errors
7
 * @since         CakePHP(tm) v 0.10.0.1076
8
 */
9
?>
10
<h2><?php echo $name; ?></h2>
11
<p class="error">
12
	<strong><?php echo __d('cake', 'Error'); ?>: </strong>
13
	<?php printf(
14
		__d('cake', 'The requested address %s was not found on this server.'),
15
		"<strong>'{$url}'</strong>"
16
	); ?>
17
</p>
18
<?php
19
if (Configure::read('debug') > 0):
20
	echo $this->element('exception_stack_trace');
21
endif;
22
?>