exception.html.php 396 B

123456789
  1. <div class="test-exception">
  2. <strong>Exception</strong> thrown in <strong><?php echo "{$error['class']}::{$error['method']}()"; ?></strong>
  3. on line <?php echo $error['line'] ?>
  4. <span class="content"><?php echo $error['message'] ?></span>
  5. <?php if (isset($error['trace']) && !empty($error['trace'])): ?>
  6. Trace
  7. <span class="trace"><?php echo $error['trace'] ?></span>
  8. <?php endif ?>
  9. </div>