001package co.codewizards.cloudstore.updater; 002 003public class PGPVerifyException extends RuntimeException { 004 005 private static final long serialVersionUID = 1L; 006 007 public PGPVerifyException() { } 008 009 public PGPVerifyException(String message) { 010 super(message); 011 } 012 013 public PGPVerifyException(Throwable cause) { 014 super(cause); 015 } 016 017 public PGPVerifyException(String message, Throwable cause) { 018 super(message, cause); 019 } 020 021 public PGPVerifyException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { 022 super(message, cause, enableSuppression, writableStackTrace); 023 } 024 025}