mirror of
https://github.com/dalbodeule/snap-admin.git
synced 2025-06-09 05:48:20 +00:00
Minor changes
This commit is contained in:
parent
c16ebff78d
commit
cc131739c3
@ -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;
|
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 {
|
public class MappingError {
|
||||||
private String message;
|
private String message;
|
||||||
|
|
||||||
|
@ -20,10 +20,8 @@
|
|||||||
package tech.ailef.dbadmin.external.exceptions;
|
package tech.ailef.dbadmin.external.exceptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thrown during the computation of pagination if the requested
|
* Thrown when a field of an `@Entity` class has a type that is not
|
||||||
* page number is not valid within the current request (e.g. it is greater
|
* supported.
|
||||||
* than the maximum available page). Used internally to redirect the
|
|
||||||
* user to a default page.
|
|
||||||
*/
|
*/
|
||||||
public class UnsupportedFieldTypeException extends DbAdminException {
|
public class UnsupportedFieldTypeException extends DbAdminException {
|
||||||
private static final long serialVersionUID = -8891734807568233099L;
|
private static final long serialVersionUID = -8891734807568233099L;
|
||||||
|
@ -68,7 +68,8 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<div class="separator mb-2 mt-2"></div>
|
<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>
|
<ul>
|
||||||
<li th:each="error : ${schema.getErrors()}" th:text="${error.getMessage()}">
|
<li th:each="error : ${schema.getErrors()}" th:text="${error.getMessage()}">
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user