error.gsp 499 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><g:if env="development">Grails Runtime Exception</g:if><g:else>Error</g:else></title>
  5. <meta name="layout" content="main">
  6. <g:if env="development"><link rel="stylesheet" href="${resource(dir: 'css', file: 'errors.css')}" type="text/css"></g:if>
  7. </head>
  8. <body>
  9. <g:if env="development">
  10. <g:renderException exception="${exception}" />
  11. </g:if>
  12. <g:else>
  13. <ul class="errors">
  14. <li>An error has occurred</li>
  15. </ul>
  16. </g:else>
  17. </body>
  18. </html>