]> www.average.org Git - YkNeoCR.git/blob - src/org/average/nfcauthcr/CRException.java
return early if cannot init adapter
[YkNeoCR.git] / src / org / average / nfcauthcr / CRException.java
1 package org.average.ykneocr;
2
3 import java.lang.Exception;
4
5 public class CRException extends Exception {
6
7         public CRException(String detailMessage) {
8                 super(detailMessage);
9         }
10
11         public CRException(String detailMessage, Throwable throwable) {
12                 super(detailMessage, throwable);
13         }
14 }