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

javax.slee.UnrecognizedEventException Maven / Gradle / Ivy

package javax.slee;

/**
 * This exception is thrown if the event names array passed to the {@link
 * SbbContext#maskEvent SbbContext.maskEvent} method contains the name of an
 * event that is not received by the SBB.
 */
public class UnrecognizedEventException extends UnrecognizedComponentException {
    /**
     * Create an UnrecognizedEventException with no detail message.
     */
    public UnrecognizedEventException() {}

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy