clean up the layout & polished Mensa credit dialog

* don't crash if the nfc tag has been removed between triggering intent and connecting to the tag
* closes #21
This commit is contained in:
2019-08-23 19:19:35 +02:00
parent 6cc1671a52
commit 5f2b3aa496
18 changed files with 79 additions and 18 deletions

View File

@ -4,6 +4,6 @@ package com.codebutler.farebot.card.desfire
* Created by Jakob Wenzel on 16.11.13.
*/
class DesfireException : Exception {
constructor(message: String) : super(message) {}
constructor(cause: Throwable) : super(cause) {}
constructor(message: String) : super(message)
constructor(cause: Throwable) : super(cause)
}