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 echo __d('cake', 'An Internal Error Has Occurred.'); ?>
14
</p>
15
<?php
16
if (Configure::read('debug') > 0):
17
	echo $this->element('exception_stack_trace');
18
endif;
19
?>