Minor changes

This commit is contained in:
Francesco 2023-10-05 13:15:51 +02:00
parent c16ebff78d
commit cc131739c3
3 changed files with 27 additions and 5 deletions

View File

@ -1,5 +1,28 @@
/*
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
* Copyright (C) 2023 Ailef (http://ailef.tech)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package tech.ailef.dbadmin.external.dto;
/**
* A wrapper class for information about mapping errors, i.e. errors that happen
* during the initialization phase, when table and fields are mapped to our internal
* representation.
*/
public class MappingError {
private String message;

View File

@ -20,10 +20,8 @@
package tech.ailef.dbadmin.external.exceptions;
/**
* Thrown during the computation of pagination if the requested
* page number is not valid within the current request (e.g. it is greater
* than the maximum available page). Used internally to redirect the
* user to a default page.
* Thrown when a field of an `@Entity` class has a type that is not
* supported.
*/
public class UnsupportedFieldTypeException extends DbAdminException {
private static final long serialVersionUID = -8891734807568233099L;

View File

@ -68,7 +68,8 @@
</tr>
</table>
<div class="separator mb-2 mt-2"></div>
<h3 th:if="${!schema.getErrors().isEmpty()}" class="fw-bold"><i class="bi bi-exclamation-triangle"></i> Errors</h3>
<h3 th:if="${!schema.getErrors().isEmpty()}"
class="fw-bold mt-3 mb-3"><i class="bi bi-exclamation-triangle"></i> Errors</h3>
<ul>
<li th:each="error : ${schema.getErrors()}" th:text="${error.getMessage()}">
</li>