{% extends 'index.twig' %} {% block bodyNavigation %}{% endblock %} {% block title %}Octoleo Error{% endblock %} {% block content %}
{% if exception.code in [404, 405] %}

We Couldn't Find It

Sorry, we couldn't find the page matching your request. Try using the navigation to find what you were looking for?

{% else %}

Ouch, That's an Error

Well this is embarrassing, seems there was an error processing this request. Perhaps try again? Or file an issue so we can address it.

{% endif %} {% if appDebug %}

{{ exception.code|default(0) }} {{ exception|get_class }}

{{ exception.message|strip_root_path }}

{% if exception.previous %} {% set _previous = exception.previous %}

Previous Exception

{{ exception.code|default(0) }} {{ exception|get_class }}

{{ exception.message|strip_root_path }}

{% endif %} {% endif %}
{% endblock %}