vendor/symfony/twig-bundle/Resources/views/Exception/traces.txt.twig line 1

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