From f39ab43fc0120b7fa97028d40acd7851de8d4a99 Mon Sep 17 00:00:00 2001 From: Jakob Heher Date: Thu, 24 Nov 2022 14:14:37 +0100 Subject: Repository moved to GitHub: https://github.com/a-sit/pdf-over --- .../pdfover/signer/UserCancelledException.java | 44 ---------------------- 1 file changed, 44 deletions(-) delete mode 100644 pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java (limited to 'pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java') diff --git a/pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java b/pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java deleted file mode 100644 index ff1b4db8..00000000 --- a/pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java +++ /dev/null @@ -1,44 +0,0 @@ -package at.asit.pdfover.signer; - -/** - * The user cancelled the operation. - */ -public class UserCancelledException extends Exception { - - /** - * - */ - private static final long serialVersionUID = -7341854663858331004L; - - /** - * Empty constructor - */ - public UserCancelledException() { - super(); - } - - /** - * Constructor with causing exception - * @param cause the cause - */ - public UserCancelledException(Throwable cause) { - super(cause); - } - - /** - * Constructor with message - * @param msg the message - */ - public UserCancelledException(String msg) { - super(msg); - } - - /** - * Constructor with message and causing exception - * @param message the message - * @param cause the cause - */ - public UserCancelledException(String message, Throwable cause) { - super(message, cause); - } -} -- cgit v1.2.3