From: Eugene Crosser Date: Fri, 10 May 2013 10:32:27 +0000 (+0400) Subject: add forgotten CRException X-Git-Url: http://www.average.org/gitweb/?p=YkNeoCR.git;a=commitdiff_plain;h=83dd473598db93e28f7b0e2e4a8f9b922d4ff876 add forgotten CRException --- 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); + } +}