summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Abraham <andreas.abraham@egiz.gv.at>2019-04-01 10:38:54 +0200
committerAndreas Abraham <andreas.abraham@egiz.gv.at>2019-04-01 10:38:54 +0200
commit9cd5dec6b94b85c41deb88453e87489fb7f9769f (patch)
tree062b66e913411ba65166800a6769a06aac8efc78
parent5852b06e66ec895927ef49f2d0748f3eec93d5d4 (diff)
downloadpdf-over-9cd5dec6b94b85c41deb88453e87489fb7f9769f.tar.gz
pdf-over-9cd5dec6b94b85c41deb88453e87489fb7f9769f.tar.bz2
pdf-over-9cd5dec6b94b85c41deb88453e87489fb7f9769f.zip
new exception added
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/exceptions/ATrustConnectionException.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/exceptions/ATrustConnectionException.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/exceptions/ATrustConnectionException.java
new file mode 100644
index 00000000..ae350bf2
--- /dev/null
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/exceptions/ATrustConnectionException.java
@@ -0,0 +1,41 @@
+/*
+ * Copyright 2012 by A-SIT, Secure Information Technology Center Austria
+ *
+ * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by
+ * the European Commission - subsequent versions of the EUPL (the "Licence");
+ * You may not use this work except in compliance with the Licence.
+ * You may obtain a copy of the Licence at:
+ * http://joinup.ec.europa.eu/software/page/eupl
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the Licence is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the Licence for the specific language governing permissions and
+ * limitations under the Licence.
+ */
+package at.asit.pdfover.gui.exceptions;
+
+// Imports
+import java.io.File;
+
+import at.asit.pdfover.gui.utils.Messages;
+
+/**
+ *
+ */
+public class ATrustConnectionException extends Exception {
+ /**
+ *
+ */
+ private static final long serialVersionUID = -5826910929587650685L;
+
+ /**
+ * Constructor
+ * @param file
+ */
+ public ATrustConnectionException() {
+ super(Messages.getString("error.ATrustConnection")); //$NON-NLS-1$
+ }
+
+
+}