X-Git-Url: http://average.org/gitweb/?a=blobdiff_plain;f=src%2Forg%2Faverage%2Fnfcauthcr%2FCRException.java;fp=src%2Forg%2Faverage%2Fnfcauthcr%2FCRException.java;h=0ff379298346495c7bd1e9b7a1294557b7b9754b;hb=83dd473598db93e28f7b0e2e4a8f9b922d4ff876;hp=0000000000000000000000000000000000000000;hpb=3930ad3656ed5ef6a86c9da684733449a591bbc2;p=YkNeoCR.git 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); + } +}