All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fathom.rest.controller.exceptions.ValidationException Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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