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