001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.kernel.api.exception;
007
008/**
009 * An access exception has occurred.
010 *
011 * @author acoburn
012 * @since 2016-02-04
013 */
014public class AccessDeniedException extends RepositoryRuntimeException {
015
016    private static final long serialVersionUID = 1L;
017
018    /**
019     * Constructor
020     *
021     * @param msg message
022     * @param e cause
023     */
024    public AccessDeniedException(final String msg, final Throwable e) {
025        super(msg, e);
026    }
027
028}