001// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
002//
003// SPDX-License-Identifier: Apache-2.0
004
005package org.pgpainless.exception;
006
007/**
008 * Method that gets thrown if the user requests some functionality which is not yet implemented.
009 */
010public class NotYetImplementedException extends RuntimeException {
011
012}