bigbluebutton-Github/bbb-lti/grails-app/views/error.gsp

19 lines
445 B
Plaintext
Raw Normal View History

2014-03-27 03:45:05 +08:00
<!DOCTYPE html>
<html>
2014-03-27 03:45:05 +08:00
<head>
<title><g:if env="development">Grails Runtime Exception</g:if><g:else>Error</g:else></title>
<meta name="layout" content="tool">
<g:if env="development"><asset:stylesheet src="errors.css"/></g:if>
2014-03-27 03:45:05 +08:00
</head>
<body>
<g:if env="development">
<g:renderException exception="${exception}" />
</g:if>
2014-03-27 03:45:05 +08:00
<g:else>
<ul class="errors">
<li>An error has occurred</li>
</ul>
</g:else>
</body>
</html>