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

schemakeeper.exception.SchemaKeeperException Maven / Gradle / Ivy

package schemakeeper.exception;

public class SchemaKeeperException extends RuntimeException {
    public SchemaKeeperException() {
    }

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

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

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

    public SchemaKeeperException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy