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/**
010 * Indicates an interruption to the current thread
011 *
012 * @since 2016-10-16
013 * @author awoods
014 */
015public class InterruptedRuntimeException extends RepositoryRuntimeException {
016
017    private static final long serialVersionUID = 1L;
018
019    /**
020     * Constructor
021     *
022     * @param msg message
023     * @param e cause
024     */
025    public InterruptedRuntimeException(final String msg, final Throwable e) {
026        super(msg, e);
027    }
028
029}