error.html 540 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <head th:replace="common::header(~{::title},~{})">
  5. <title>科德咨询有限公司</title>
  6. </head>
  7. <body>
  8. <p>错误信息:</p>
  9. <div th:if="${exception instanceOf T(com.kede.common.error.BusinessException)}">
  10. <p th:text="${exception?.field}"></p>
  11. <p th:text="${exception?.message}"></p>
  12. </div>
  13. <p th:text="${message}">未知错误</p>
  14. <p th:text="${status}">404</p>
  15. <div th:replace="common::footer(~{})"></div>
  16. </body>
  17. </html>