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.persistence.api.exceptions; 007 008/** 009 * If an operation results in a conflict preventing the successful completion of a persistence 010 * operation. 011 * 012 * @author dbernstein 013 * @since 2020-01-29 014 */ 015public class PersistentItemConflictException extends PersistentStorageException { 016 017 private static final long serialVersionUID = 1L; 018 019 /** 020 * Basic constructor 021 * 022 * @param msg The text of the exception. 023 */ 024 public PersistentItemConflictException(final String msg) { 025 super(msg); 026 } 027 028}