From 9acf3c2e8aca9016daf76785747d838cdc5b0330 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Mon, 9 Jul 2018 10:11:25 +0200 Subject: add SL20 connecter-backend in a first beta version (getCertificate looks good, create signature is untested) --- .../egiz/sl20/exceptions/SL20SecurityException.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pdf-as-lib/src/main/java/at/gv/egiz/sl20/exceptions/SL20SecurityException.java (limited to 'pdf-as-lib/src/main/java/at/gv/egiz/sl20/exceptions/SL20SecurityException.java') diff --git a/pdf-as-lib/src/main/java/at/gv/egiz/sl20/exceptions/SL20SecurityException.java b/pdf-as-lib/src/main/java/at/gv/egiz/sl20/exceptions/SL20SecurityException.java new file mode 100644 index 00000000..e1562b14 --- /dev/null +++ b/pdf-as-lib/src/main/java/at/gv/egiz/sl20/exceptions/SL20SecurityException.java @@ -0,0 +1,20 @@ +package at.gv.egiz.sl20.exceptions; + +public class SL20SecurityException extends SL20Exception { + + private static final long serialVersionUID = 3281385988027147449L; + + public SL20SecurityException() { + super("sl20.05"); + } + + public SL20SecurityException(Throwable wrapped) { + super("sl20.05", wrapped); + + } + + public SL20SecurityException(String string) { + super(string); + } + +} -- cgit v1.2.3