javax.slee.NotAttachedException Maven / Gradle / Ivy
The newest version!
package javax.slee;
/**
* This exception is thrown by methods in SbbContext
if an SBB entity
* attempts to obtain or modify the event mask for an activity it is not attached to.
*
* As of SLEE 1.1 this class extends {@link javax.slee.SLEEException} instead of {@link Exception}.
*/
public class NotAttachedException extends SLEEException {
/**
* Create a NotAttachedException
with no detail message.
*/
public NotAttachedException() {
super(null);
}
/**
* Create a NotAttachedException
with a detail message.
* @param message the detail message.
*/
public NotAttachedException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy