previousException.php 748 Bytes
Newer Older
1 2 3
<?php
/**
 * @var \yii\base\Exception $exception
4
 * @var \yii\base\ErrorHandler $handler
5 6
 */
?>
7
<div class="previous">
8 9 10 11
	<span class="arrow">&crarr;</span>
	<h2>
		<span>Caused by:</span>
		<?php if ($exception instanceof \yii\base\Exception): ?>
Alexander Makarov committed
12 13
			<span><?= $handler->htmlEncode($exception->getName()) ?></span> &ndash;
			<?= $handler->addTypeLinks(get_class($exception)) ?>
14
		<?php else: ?>
Alexander Makarov committed
15
			<span><?= $handler->htmlEncode(get_class($exception)) ?></span>
16 17
		<?php endif; ?>
	</h2>
18
	<h3><?= nl2br($handler->htmlEncode($exception->getMessage())) ?></h3>
Alexander Makarov committed
19 20
	<p>in <span class="file"><?= $exception->getFile() ?></span> at line <span class="line"><?= $exception->getLine() ?></span></p>
	<?= $handler->renderPreviousExceptions($exception) ?>
21
</div>