{% extends '@ChamiloTheme/Layout/base-layout.html.twig' %} {% block page_title %} Error {% endblock %} {% block page_subtitle %} {{ status_code }} {% endblock %} {% block page_content %}

{{ status_code }}

{{ 'Something seems to have gone wrong'|trans() }}

{{ exception.message }}

{% for n, position in exception.toarray %}

{{ position.class|abbr_class }}

{{ position.message|nl2br|format_file_from_text }}
    {% for i, trace in position.trace %}
  • Stack #{{ i }}
  • {{ trace.file }}

    {% if trace.function %} at {{ trace.short_class }} {{ trace.type ~ trace.function }} ({{ trace.args|format_args }}) {% endif %} {% if trace.file is defined and trace.file and trace.line is defined and trace.line %} {{ trace.function ? '
    ' : '' }} in {{ trace.file|format_file(trace.line) }}  {{ trace.file|file_excerpt(trace.line) }} {% endif %}
  • {% endfor %}
{% endfor %} {% endblock %}