com.agileactors.crud.exception.MappingNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agile-actors-spring-boot-crud-api Show documentation
Show all versions of agile-actors-spring-boot-crud-api Show documentation
This is a library that extends Spring Boot functionality and offers a convenient and easy way to expose a domain's CRUD (Create, Read, Update, Delete) operations.
The newest version!
package com.agileactors.crud.exception;
/**
* Thrown when mapping is not defined at classpat:spring-rest-properties.yml file
*
* @author Alexis Panousis
*/
public class MappingNotFoundException extends ApplicationException {
public MappingNotFoundException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy