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 * This exception indicates that a resource could not be modified because it is currently being modified by another
010 * transaction.
011 *
012 * @author pwinckles
013 */
014public class ConcurrentUpdateException extends RepositoryRuntimeException {
015
016    /**
017     * Constructor
018     *
019     * @param msg message
020     */
021    public ConcurrentUpdateException(final String msg) {
022        super(msg);
023    }
024
025}