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

javax.slee.management.UnrecognizedSubsystemException Maven / Gradle / Ivy

The newest version!
package javax.slee.management;

/**
 * This exception is thrown by management operations in SleeManagementMBean
 * when passed the name of a SLEE internal component or subsystem that does not exist.
 * @since SLEE 1.1
 */
public class UnrecognizedSubsystemException extends Exception {
    /**
     * Create an UnrecognizedSubsystemException with no detail message.
     */
    public UnrecognizedSubsystemException() {}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy