{% import 'lib.html' as lib %} {{ exception_class }}: {{ error_message }} | Starception Debugger
{{ exception_class }} at {{ request_method }} {{ request_path }}
{{ error_message|e }}
{% if solution %}
Hint: {{ solution }}
{% endif %}
{% for stack_item in stack %}
{% if loop.index0 > 0 %}
Caused by
{{ stack_item.exc|e }}
{% endif %}
0 %} class="collapsed"{% endif %}> {% if loop.index0 > 0 %} {% if stack_item.solution %}
Hint: {{ stack_item.solution }}
{% endif %} {% endif %}
{% for frame in stack_item.frames|reverse %} {% with frame=frame, is_current=loop.first %} {% include 'code_snippet.html' %} {% endwith %} {% endfor %}
{% for frame in stack_item.frames|reverse %} {% with frame=frame, is_current=loop.first %} {% include 'frame_line.html' %} {% endwith %} {% endfor %}
{% endfor %}
{{ lib.details_row('Request', request_info, true) }} {{ lib.details_row('Headers', request_headers) }} {{ lib.details_row('Session', session) }} {{ lib.details_row('Cookies', cookies) }} {{ lib.details_row('Request state', request_state) }} {{ lib.details_row('App state', app_state) }} {{ lib.details_row('Platform', platform) }} {{ lib.details_row('Environment', environment) }}