es.iti.wakamiti.api.imconfig.ConfigurationException Maven / Gradle / Ivy
The newest version!
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package es.iti.wakamiti.api.imconfig;
/**
* Multi-purpose runtime exception for any error occurred during the creation of a
* new configuration.
*/
public class ConfigurationException extends RuntimeException {
private static final long serialVersionUID = 7175876124782335084L;
public ConfigurationException(Throwable throwable) {
super(throwable);
}
public ConfigurationException(String message) {
super(message);
}
public ConfigurationException(String message, Throwable throwable) {
super(message,throwable);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy