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 thrown when the calculated digest does not match the stored digest
010 * @author ajs6f
011 * @since Mar 10, 2013
012 */
013public class InvalidChecksumException extends RepositoryRuntimeException {
014
015    private static final long serialVersionUID = 1L;
016
017    /**
018     * Exception with message
019     * @param message the message
020     */
021    public InvalidChecksumException(final String message) {
022        super(message);
023    }
024}