summaryrefslogtreecommitdiff
path: root/pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java
diff options
context:
space:
mode:
authorJakob Heher <jakob.heher@iaik.tugraz.at>2022-11-24 14:14:37 +0100
committerJakob Heher <jakob.heher@iaik.tugraz.at>2022-11-24 14:14:37 +0100
commitf39ab43fc0120b7fa97028d40acd7851de8d4a99 (patch)
tree335caaa8b701395bae64fbf67ca9afb1776ae658 /pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java
parenta4dd755534013449be5573102114d8dcfccba159 (diff)
downloadpdf-over-master.tar.gz
pdf-over-master.tar.bz2
pdf-over-master.zip
Repository moved to GitHub: https://github.com/a-sit/pdf-overHEADmaster
Diffstat (limited to 'pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java')
-rw-r--r--pdf-over-signer/src/main/java/at/asit/pdfover/signer/UserCancelledException.java44
1 files changed, 0 insertions, 44 deletions
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);
- }
-}