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

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

The newest version!
package io.soffa.foundation.errors;

public class InvalidTenantException extends FunctionalException {

    private static final long serialVersionUID = 1L;

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy