Added an integration-test that tests the exception-handling
[demos/testing] / src / main / resources / templates / 400.html
1 <!DOCTYPE HTML>
2 <html xmlns:th="http://www.thymeleaf.org">
3   <head>
4     <title th:text="'400: ' + ${exception.getClass().getSimpleName()}">Testing Exception-Handling - Template for 400</title>
5     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6   </head>
7   <body>
8     <h1 th:text="'400: ' + ${exception.getClass().getSimpleName()}">Template for 400</h1>
9     <div>
10       <p><strong th:text="'Catched exception: ' + ${exception}">EXCEPTION</strong></p>
11       <p><a href="#" th:href="@{/}">Back to HOME</a></p>
12     </div>
13   </body>
14 </html>