001// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
002//
003// SPDX-License-Identifier: Apache-2.0
004
005package org.pgpainless.exception;
006
007import java.io.IOException;
008
009/**
010 * Exception that gets thrown when the verification of a modification detection code failed.
011 */
012public class ModificationDetectionException extends IOException {
013
014}