templates/error/error.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}
  3.     Erreur détectée
  4. {% endblock %}
  5. {% block body %}
  6.     <div class="container">
  7.         <h3>Une erreur a été rencontrée:</h3><hr>
  8.         <div >Type exception : {{ classe }}<hr></div>
  9.         <div >Code           : {{ code }}<hr></div>
  10.         <div >Status         : {{ statuscode }}<hr></div>
  11.         <div >Message        :<br>{{ message }}<hr></div>
  12.         <div >At             :<br>{{ class }} ligne {{ line }}<hr></div>
  13.     </div>
  14.     <div class="form-group row">    
  15.         <button  class="btn btn-warning col-sm-3 offset-3" >
  16.             <a href="{{ path('app_init') }}">Retour</a> 
  17.         </button>
  18.     </div>   
  19. {% endblock %}