mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
12 lines
No EOL
359 B
Kotlin
12 lines
No EOL
359 B
Kotlin
package com.geeksville.mesh.service
|
|
|
|
import java.io.IOException
|
|
import java.util.*
|
|
|
|
open class BLEException(msg: String) : IOException(msg)
|
|
|
|
open class BLECharacteristicNotFoundException(uuid: UUID) :
|
|
BLEException("Can't get characteristic $uuid")
|
|
|
|
/// Our interface is being shut down
|
|
open class BLEConnectionClosing : BLEException("Connection closing ") |