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

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

package javax.slee.management;

/**
 * This exception is thrown by a ServiceUsageMBean when an
 * attempt is made to create an SBB parameter set with a name that has
 * already been used.
 */
public class UsageParameterSetNameAlreadyExistsException extends Exception {
    /**
     * Create a UsageParameterSetNameAlreadyExistsException with no detail message.
     */
    public UsageParameterSetNameAlreadyExistsException() {}

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy