vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/traces.txt.twig line 1

Open in your IDE?
  1. {% if exception.trace|length %}
  2. <pre class="stacktrace">
  3. {{ exception.class }}:
  4. {% if exception.message is not empty %}
  5.     {{- exception.message }}
  6. {% endif %}
  7. {% for trace in exception.trace %}
  8.   {{ include('@Twig/Exception/trace.txt.twig', { trace: trace }, with_context = false) }}
  9. {% endfor %}
  10. </pre>
  11. {% endif %}