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

javax.slee.profile.UnrecognizedAttributeException Maven / Gradle / Ivy

package javax.slee.profile;

/**
 * This exception is thrown by the {@link javax.slee.management.ProfileProvisioningMBean#getProfilesByIndexedAttribute
 * ProfileProvisioningMBean.getProfilesByIndexedAttribute} method when passed the name
 * of an attribute that does not exist in the profile specification.
 */
public class UnrecognizedAttributeException extends Exception {
    /**
     * Create an UnrecognizedAttributeException with no detail message.
     */
    public UnrecognizedAttributeException() {}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy