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

javax.slee.resource.ActivityAlreadyExistsException Maven / Gradle / Ivy

The newest version!
package javax.slee.resource;

import javax.slee.SLEEException;

/**
 * This exception is thrown by a {@link SleeEndpoint} if an attempt is made to
 * start an activity that is already known by the SLEE.
 * @since SLEE 1.1
 */
public class ActivityAlreadyExistsException extends SLEEException {
    /**
     * Create an ActivityAlreadyExistsException with a detail message.
     * @param message the detail message.
     */
    public ActivityAlreadyExistsException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy