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
1 package de.dhbwloe.campusapp.nfcreader.MifareDESFire;
2
3 /**
4  * Created by stefan on 26.01.16.
5  */
6 public class CommunicationError extends Exception {
7
8     public CommunicationError() {
9     }
10
11     public CommunicationError(String detailMessage) {
12         super(detailMessage);
13     }
14
15     public CommunicationError(String detailMessage, Throwable throwable) {
16         super(detailMessage, throwable);
17     }
18
19     public CommunicationError(Throwable throwable) {
20         super(throwable);
21     }
22 }