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

javax.slee.InvalidStateException Maven / Gradle / Ivy

The newest version!
package javax.slee;

/**
 * This exception is thrown by management operations that change the state of
 * some entity (such as the SLEE or a Service) when that entity is not in the
 * correct state to transition to the selected state.
 */
public class InvalidStateException extends Exception {
    /**
     * Create an InvalidStateException with no detail message.
     */
    public InvalidStateException() {}

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy