{% extends 'layout.twig' %} {% block content %}

{{ environment.translate('An error has occurred') }}

{{ exception.message }}

{% for trace in exception.getTrace() %}

{{ trace.class | default('std') }}::{{ trace.function }}({{ trace.args | json_encode | e }})

{% if trace.file %} @ {{ trace.file }}:{{ trace.line }} {% else %} No data {% endif %}

{% endfor %}
{% endblock %}