Meshtastic-Android/app/src/main/java/com/geeksville/mesh/service/BLEException.kt

12 lines
359 B
Kotlin
Raw Normal View History

package com.geeksville.mesh.service
import java.io.IOException
import java.util.*
open class BLEException(msg: String) : IOException(msg)
2021-03-29 20:33:06 +08:00
open class BLECharacteristicNotFoundException(uuid: UUID) :
BLEException("Can't get characteristic $uuid")
2021-03-23 13:17:36 +08:00
/// Our interface is being shut down
2021-03-29 20:33:06 +08:00
open class BLEConnectionClosing : BLEException("Connection closing ")