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

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

package javax.slee.resource;

/**
 * This exception can be thrown by the {@link ResourceAdaptor#raVerifyConfiguration}
 * method if the configuration properties supplied by the Administrator are not
 * valid for the resource adaptor.
 * @since SLEE 1.1
 */
public class InvalidConfigurationException extends Exception {
    /**
     * Create an InvalidConfigurationException with a detail message.
     * @param message the detail message.
     */
    public InvalidConfigurationException(String message) {
        super(message);
    }

    /**
     * Create an InvalidConfigurationException with a detail message
     * and cause.
     * @param message the detail message.
     * @param cause the reason this exception was thrown.
     */
    public InvalidConfigurationException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy