<div id="exception">
    <?php echo $this->message ?>
</div>
<?php if ($this->showDetails): ?>
    <div id="dev-exception">
        <h2>Exception Message:</h2>
        <pre class="major"><?php echo $this->exception ? $this->exception->getMessage() : null; ?></pre>

        <h2>Exception Information:</h2>
        <pre><?php echo $this->formattedException; ?></pre>
    </div>
<?php endif; ?>
