![JAR search and dependency download from the Maven repository](/logo.png)
io.progix.dropwizard.jooq.tenancy.TenantProcessingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-jooq Show documentation
Show all versions of dropwizard-jooq Show documentation
A Dropwizard bundle for jOOQ integration.
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