
javax.slee.resource.UnrecognizedActivityHandleException Maven / Gradle / Ivy
The newest version!
package javax.slee.resource;
import javax.slee.SLEEException;
/**
* This exception is thrown by the {@link SleeEndpoint} if an attempt is made to
* interact with an activity that is not known by the SLEE.
* @since SLEE 1.1
*/
public class UnrecognizedActivityHandleException extends SLEEException {
/**
* Create an UnrecognizedActivityHandleException
with a detail message.
* @param message the detail message
*/
public UnrecognizedActivityHandleException(String message) {
super(message);
}
/**
* Create an UnrecognizedActivityHandleException
with a detail message
* and cause.
* @param message the detail message
* @param cause the reason this exception was thrown.
*/
public UnrecognizedActivityHandleException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy