Created
December 27, 2011 13:11
-
-
Save ykitade/1523618 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1>An error occurred</h1> | |
| <h2>{{ error.code }}: {{ message }}</h2> | |
| {% if exception %} | |
| <h3>Exception information:</h3> | |
| <p> | |
| <b>Message:</b> {{ exception.message }} | |
| </p> | |
| <h3>Stack trace:</h3> | |
| <pre>{{ exception.getTraceAsString() }}</pre> | |
| <h3>Request Parameters:</h3> | |
| {% for key, val in request.getParams() %} | |
| {{key}} => {{val}} {{', '}} | |
| {% endfor %} | |
| {% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment