You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
779 B
21 lines
779 B
<?php |
|
/** |
|
* @var \yii\base\Exception $exception |
|
* @var \yii\base\ErrorHandler $this |
|
*/ |
|
?> |
|
<div class="previous"> |
|
<span class="arrow">↵</span> |
|
<h2> |
|
<span>Caused by:</span> |
|
<?php if ($exception instanceof \yii\base\Exception): ?> |
|
<span><?php echo $this->htmlEncode($exception->getName()); ?></span> – |
|
<?php echo $this->addTypeLinks(get_class($exception)); ?> |
|
<?php else: ?> |
|
<span><?php echo $this->htmlEncode(get_class($exception)); ?></span> |
|
<?php endif; ?> |
|
</h2> |
|
<h3><?php echo $this->htmlEncode($exception->getMessage()); ?></h3> |
|
<p>in <span class="file"><?php echo $exception->getFile(); ?></span> at line <span class="line"><?php echo $exception->getLine(); ?></span></p> |
|
<?php echo $this->renderPreviousExceptions($exception); ?> |
|
</div>
|
|
|