2 <html xmlns:th="http://www.thymeleaf.org" th:replace="~{layout :: pagelayout(~{:: title}, ~{:: h1}, ~{:: table.card-text})}">
4 <title th:text="|${status}: ${error}">XXX: ERROR</title>
5 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
9 <h1 th:text="|${status}: ${error}">XXX: ERROR</h1>
10 <table class="card-text table">
12 <tr class="border-top-0">
13 <th scope="row">Status</th>
14 <td th:text="${status}">ERROR.STATUS</td>
17 <th scope="row">Error</th>
18 <td th:text="${error}">ERROR.ERROR</td>
20 <tr th:if="!${#strings.isEmpty(message)}">
21 <th scope="row">Message</th>
22 <td th:text="${message}">ERROR.MESSAGE</td>
24 <tr th:if="!${#strings.isEmpty(requestId)}">
25 <th class="text-nowrap" scope="row">Request-ID</th>
26 <td th:text="${requestId}">ERROR.REQUEST_ID</td>
29 <th scope="row">Timstamp</th>
30 <td th:text="${timestamp}">ERROR.TIMESTAMP</td>
32 <tr th:if="!${#strings.isEmpty(path)}">
33 <th scope="row">Path</th>
34 <td th:text="${path}">ERROR.PATH</td>
37 <tr th:if="!${#strings.isEmpty(trace)}">
38 <th scope="row">Trace</th>
40 <div class="overflow-hidden">
41 <pre class="overflow-hidden" th:text="${trace}">ERROR.TRACE</pre>
48 <p><a href="#" th:href="@{/}" class="btn btn-primary">Back to HOME</a>