de.julielab.xmlData.cli.ConfigurationNotFoundException Maven / Gradle / Ivy
package de.julielab.xmlData.cli;
public class ConfigurationNotFoundException extends Exception {
public ConfigurationNotFoundException() {
}
public ConfigurationNotFoundException(String message) {
super(message);
}
public ConfigurationNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public ConfigurationNotFoundException(Throwable cause) {
super(cause);
}
public ConfigurationNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}