
fathom.rest.controller.exceptions.ValidationException 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;
import fathom.exception.FathomException;
/**
* @author James Moger
*/
public class ValidationException extends FathomException {
public ValidationException() {
this("");
}
public ValidationException(String message, Object... parameters) {
super(format(message, parameters));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy