templates/error/error.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.     <h1 class="pl-h1">Error {{ code }}</h1>
  4.     <div class="row">
  5.         <div class="col-sm-6">
  6.             {{ exception.traceAsString }}
  7.         </div>
  8.     </div>
  9. {% endblock %}