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

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

package javax.slee.management;

/**
 * This exception is thrown by management operations when passed a
 * NotificationSource object that is not recognized by the SLEE.
 * @since SLEE 1.1
 */
public class UnrecognizedNotificationSourceException extends Exception {
    /**
     * Create an UnrecognizedNotificationSourceException with no detail message.
     */
    public UnrecognizedNotificationSourceException() {}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy