openesb-standalone/openesb-standalone-container/src/main/java/net/openesb/standalone/settings/SettingsException.java

19 lines
414 B
Java

package net.openesb.standalone.settings;
/**
* A generic failure to handle settings.
*
* @author David BRASSELY (brasseld at gmail.com)
* @author OpenESB Community
*/
public class SettingsException extends RuntimeException {
public SettingsException(String message) {
super(message);
}
public SettingsException(String message, Throwable cause) {
super(message, cause);
}
}