Exception Details

{% if data.has_exception %} {% if data.is_python_exception %}
Python Exception
{{ data.exception.class }}: {{ data.exception.message }}

Stack Trace

{{ data.exception.trace }}
{% elif data.is_http_error %}
HTTP Error
{{ data.exception.class }}: {{ data.exception.message }}

Request Details

{% if data.exception.user_agent %} {% endif %} {% if data.exception.referer %} {% endif %}
Status Code {{ data.status_code }}
Method {{ data.exception.method }}
URL {{ data.exception.url }}
Path {{ data.exception.path }}
User Agent {{ data.exception.user_agent }}
Referer {{ data.exception.referer }}
Client IP {{ data.exception.client_ip }}

💡 Possible Solutions

{% if data.status_code == 404 %} {% elif data.status_code == 500 %} {% elif data.status_code == 405 %} {% endif %}
{% endif %} {% else %}

✅ No exception was thrown during this request.

{% endif %}