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

javax.jcr.security.AccessControlException Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 * Copyright 2008 Day Management AG, Switzerland. All rights reserved.
 */
package javax.jcr.security;

import javax.jcr.RepositoryException;

/**
 * Exception thrown by access control related methods of
 * AccessControlManager.
 *
 * @since JCR 2.0
 */
public class AccessControlException extends RepositoryException {

    /**
     * Constructs a new instance of this class with null as its
     * detail message.
     */
    public AccessControlException() {
        super();
    }

    /**
     * Constructs a new instance of this class with the specified detail
     * message.
     *
     * @param message the detail message. The detail message is saved for later
     *                retrieval by the {@link #getMessage()} method.
     */
    public AccessControlException(String message) {
        super(message);
    }

    /**
     * Constructs a new instance of this class with the specified detail message
     * and root cause.
     *
     * @param message   the detail message. The detail message is saved for later
     *                  retrieval by the {@link #getMessage()} method.
     * @param rootCause root failure cause
     */
    public AccessControlException(String message, Throwable rootCause) {
        super(message, rootCause);
    }

    /**
     * Constructs a new instance of this class with the specified root cause.
     *
     * @param rootCause root failure cause
     */
    public AccessControlException(Throwable rootCause) {
        super(rootCause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy