]> www.average.org Git - YkNeoCR.git/blobdiff - src/org/average/nfcauthcr/CRException.java
add forgotten CRException
[YkNeoCR.git] / src / org / average / nfcauthcr / CRException.java
diff --git a/src/org/average/nfcauthcr/CRException.java b/src/org/average/nfcauthcr/CRException.java
new file mode 100644 (file)
index 0000000..0ff3792
--- /dev/null
@@ -0,0 +1,14 @@
+package org.average.ykneocr;
+
+import java.lang.Exception;
+
+public class CRException extends Exception {
+
+       public CRException(String detailMessage) {
+               super(detailMessage);
+       }
+
+       public CRException(String detailMessage, Throwable throwable) {
+               super(detailMessage, throwable);
+       }
+}