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

8 lines
No EOL
247 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")