com.alon.spring.crud.domain.service.exception.CreateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crud-api-base Show documentation
Show all versions of crud-api-base Show documentation
Fornece implementação básica e expansível para criação API's CRUD com Spring Boot e Spring Data JPA.
package com.alon.spring.crud.domain.service.exception;
public class CreateException extends CrudException {
private static final long serialVersionUID = 1L;
public CreateException() {
}
public CreateException(String msg) {
super(msg);
}
public CreateException(String message, Throwable cause) {
super(message, cause);
}
public CreateException(Throwable cause) {
super(cause);
}
}