
javax.slee.management.UnrecognizedResourceAdaptorException Maven / Gradle / Ivy
The newest version!
package javax.slee.management;
import javax.slee.UnrecognizedComponentException;
/**
* This exception is thrown by management operations when passed a
* ResourceAdaptorID
object that is not recognized by the SLEE,
* or does not identify a resource adaptor installed in the SLEE.
* @since SLEE 1.1
*/
public class UnrecognizedResourceAdaptorException extends UnrecognizedComponentException {
/**
* Create an UnrecognizedResourceAdaptorException
with no detail message.
*/
public UnrecognizedResourceAdaptorException() {}
/**
* Create an UnrecognizedResourceAdaptorException
with a detail message.
* @param message the detail message.
*/
public UnrecognizedResourceAdaptorException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy