All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.slee.UnrecognizedComponentException Maven / Gradle / Ivy

The newest version!
package javax.slee;

/**
 * This exception class is the base class for the exceptions that report that
 * a ComponentID (or a deritive interface) object does not identify
 * a component installed in the SLEE.
 */
public class UnrecognizedComponentException extends Exception {
    /**
     * Create an UnrecognizedComponentException with no detail message.
     */
    public UnrecognizedComponentException() {}

    /**
     * Create an UnrecognizedComponentException with a detail message.
     * @param message the detail message.
     */
    public UnrecognizedComponentException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy