org.epics.util.exceptions.ConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epics-util Show documentation
Show all versions of epics-util Show documentation
Basic Java utility classes to be shared across projects until
suitable replacements are available in the JDK.
/**
* Copyright (C) 2012 Brookhaven National Laboratory
* All rights reserved. Use is subject to license terms.
*/
package org.epics.util.exceptions;
/**
* Signals that the method is failing due to a misconfiguration of the
* library which should be fixed by the user of such library.
*
* @author carcassi
*/
public class ConfigurationException extends RuntimeException {
public ConfigurationException() {
}
public ConfigurationException(String message) {
super(message);
}
public ConfigurationException(Throwable cause) {
super(cause);
}
public ConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}