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

io.soffa.foundation.errors.RequirementException Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.soffa.foundation.errors;

public class RequirementException extends FunctionalException {

    private static final long serialVersionUID = 1L;

    public RequirementException(String message, Object... args) {
        super(message, args);
    }

    public RequirementException(Throwable cause, String message, Object... args) {
        super(cause, message, args);
    }

    public RequirementException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy