001// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
002//
003// SPDX-License-Identifier: Apache-2.0
004
005package org.pgpainless.exception;
006
007import org.bouncycastle.openpgp.PGPException;
008
009/**
010 * Exception that gets thrown if a {@link org.bouncycastle.bcpg.LiteralDataPacket} is expected, but not found.
011 */
012public class MissingLiteralDataException extends PGPException {
013
014    public MissingLiteralDataException(String message) {
015        super(message);
016    }
017}