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

com.contrastsecurity.exceptions.ConfigurationException Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
package com.contrastsecurity.exceptions;

public class ConfigurationException extends Exception {
    public ConfigurationException() {
    }

    public ConfigurationException(String s) {
        super(s);
    }

    public ConfigurationException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public ConfigurationException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy