
fathom.rest.controller.exceptions.RangeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fathom-rest Show documentation
Show all versions of fathom-rest Show documentation
RESTful Routes and Controllers based on Pippo
package fathom.rest.controller.exceptions;
public class RangeException extends ValidationException {
public RangeException() {
this("");
}
public RangeException(String message, Object... parameters) {
super(format(message, parameters));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy