javax.slee.management.UnrecognizedResourceAdaptorEntityException Maven / Gradle / Ivy
package javax.slee.management;
/**
* This exception is thrown by management operations in ResourceManagementMBean
* when passed the name of a resource adaptor entity that does not exist in the SLEE.
* @since SLEE 1.1
*/
public class UnrecognizedResourceAdaptorEntityException extends Exception {
/**
* Create an UnrecognizedResourceAdaptorEntityException
with no detail message.
*/
public UnrecognizedResourceAdaptorEntityException() {}
/**
* Create an UnrecognizedResourceAdaptorEntityException
with a detail message.
* @param message the detail message.
*/
public UnrecognizedResourceAdaptorEntityException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy