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

com.github.peterbecker.configuration.ConfigurationException Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.github.peterbecker.configuration;

/**
 * An exception that was triggered during configuration processing.
 */
public class ConfigurationException extends Exception {
    public ConfigurationException(String message) {
        super(message);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy