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 * Exception when trying to alter an immutable resource.
010 * @author whikloj
011 */
012public class GhostNodeException extends RepositoryRuntimeException {
013
014    private static final long serialVersionUID = 1L;
015
016    public GhostNodeException(final String msg) {
017        super(msg);
018    }
019}