123456789101112131415161718 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org">
- <head th:replace="common::header(~{::title},~{})">
- <title>科德咨询有限公司</title>
- </head>
- <body>
- <p>错误信息:</p>
- <div th:if="${exception instanceOf T(com.kede.common.error.BusinessException)}">
- <p th:text="${exception?.field}"></p>
- <p th:text="${exception?.message}"></p>
- </div>
- <p th:text="${message}">未知错误</p>
- <p th:text="${status}">404</p>
- <div th:replace="common::footer(~{})"></div>
- </body>
- </html>
|