
javax.slee.management.InvalidLinkNameBindingStateException Maven / Gradle / Ivy
The newest version!
package javax.slee.management;
import javax.slee.InvalidStateException;
/**
* This exception is thrown by the ServiceManagementMBean
if an attempt
* is made to activate a service for which a required resource adaptor entity link name
* binding either doesn't exist or is bound to a resource adaptor entity that does not
* implement the resource adaptor type expected by the service.
* @since SLEE 1.1
*/
public class InvalidLinkNameBindingStateException extends InvalidStateException {
/**
* Create an InvalidLinkNameBindingStateException
with no detail message.
*/
public InvalidLinkNameBindingStateException() {}
/**
* Create an InvalidLinkNameBindingStateException
with a detail message.
* @param message the detail message.
*/
public InvalidLinkNameBindingStateException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy