
restql.core.annotation.RestEntityMappingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restql-core-java Show documentation
Show all versions of restql-core-java Show documentation
Microservice query language
The newest version!
package restql.core.annotation;
public class RestEntityMappingException extends RuntimeException {
public RestEntityMappingException(String message) {
super(message);
}
public RestEntityMappingException(String entityName, String cause) {
super(String.format("Could not parse entity [%s]. Cause: %s", entityName, cause));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy