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

io.progix.dropwizard.jooq.tenancy.TenantProcessingException Maven / Gradle / Ivy

The newest version!
package io.progix.dropwizard.jooq.tenancy;

public class TenantProcessingException extends RuntimeException {

    public TenantProcessingException() {
        super();
    }

    public TenantProcessingException(String message) {
        super(message);
    }

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

    public TenantProcessingException(Throwable cause) {
        super(cause);
    }

    protected TenantProcessingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy