diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2020-01-03 10:37:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 10:37:01 +0100 |
commit | 46039355e87825a9dce12ebaad0305d20eea3f43 (patch) | |
tree | 6b17c400a9b98d2a6ec367deeea9597ac2c78e5b /src/net/gcdc/asn1/uper/Asn1EncodingException.java | |
parent | logging (diff) | |
download | UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.gz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.bz2 UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.lz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.xz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.zst UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.zip |
Diffstat (limited to 'src/net/gcdc/asn1/uper/Asn1EncodingException.java')
-rw-r--r-- | src/net/gcdc/asn1/uper/Asn1EncodingException.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/net/gcdc/asn1/uper/Asn1EncodingException.java b/src/net/gcdc/asn1/uper/Asn1EncodingException.java new file mode 100644 index 0000000..da3681b --- /dev/null +++ b/src/net/gcdc/asn1/uper/Asn1EncodingException.java @@ -0,0 +1,18 @@ +package net.gcdc.asn1.uper; + +public class Asn1EncodingException extends Exception { + + /** + * + */ + private static final long serialVersionUID = -8719453936776248228L; + + public Asn1EncodingException(String message) { + super(message); + } + + public Asn1EncodingException(String extraMessage, Asn1EncodingException cause) { + super(extraMessage + cause.getMessage(), cause); + } + +} |