@import play.exceptions.PlayException;
@args Exception exception
Application error
@if ("DEV".equals(_play.mode.name())) {
@e500(exception)
} else {
Oops, an error occured
@if (exception instanceof PlayException) {
This exception has been logged with id @(((PlayException)exception).getId()).
}
}