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