From 83dd473598db93e28f7b0e2e4a8f9b922d4ff876 Mon Sep 17 00:00:00 2001 From: Eugene Crosser Date: Fri, 10 May 2013 14:32:27 +0400 Subject: [PATCH] add forgotten CRException --- src/org/average/nfcauthcr/CRException.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 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 index 0000000..0ff3792 --- /dev/null +++ b/src/org/average/nfcauthcr/CRException.java @@ -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); + } +} -- 2.39.2