Implemented NFC Card Reader Code from https://git.sterul.com/student-projects/dhbw...
[DHBWCampusApp.git] / app / src / main / java / de / dhbwloe / campusapp / nfcreader / MifareDESFire / CommunicationError.java
diff --git a/app/src/main/java/de/dhbwloe/campusapp/nfcreader/MifareDESFire/CommunicationError.java b/app/src/main/java/de/dhbwloe/campusapp/nfcreader/MifareDESFire/CommunicationError.java
new file mode 100644 (file)
index 0000000..b165002
--- /dev/null
@@ -0,0 +1,22 @@
+package de.dhbwloe.campusapp.nfcreader.MifareDESFire;
+
+/**
+ * Created by stefan on 26.01.16.
+ */
+public class CommunicationError extends Exception {
+
+    public CommunicationError() {
+    }
+
+    public CommunicationError(String detailMessage) {
+        super(detailMessage);
+    }
+
+    public CommunicationError(String detailMessage, Throwable throwable) {
+        super(detailMessage, throwable);
+    }
+
+    public CommunicationError(Throwable throwable) {
+        super(throwable);
+    }
+}