javax.slee.UnrecognizedAlarmException Maven / Gradle / Ivy
package javax.slee;
/**
* This exception is thrown when an attempt is made to obtain or reference an alarm
* using an alarm ID that is not recognized by the SLEE, or does not represent an alarm
* known by the SLEE.
* @since SLEE 1.1
*/
public class UnrecognizedAlarmException extends Exception {
/**
* Create an UnrecognizedAlarmException
with no detail message.
*/
public UnrecognizedAlarmException() {}
/**
* Create an UnrecognizedAlarmException
with a detail message.
* @param message the detail message.
*/
public UnrecognizedAlarmException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy