Extract `RadioNotConnectedException` out of `RadioInterfaceService`

pull/417/head
Mike Cumings 2022-04-22 10:09:30 -07:00
rodzic 0d4ddaf9a0
commit 166a56a75d
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -25,10 +25,6 @@ import kotlinx.coroutines.*
import javax.inject.Inject
open class RadioNotConnectedException(message: String = "Not connected to radio") :
BLEException(message)
/**
* Handles the bluetooth link with a mesh radio device. Does not cache any device state,
* just does bluetooth comms etc...

Wyświetl plik

@ -0,0 +1,4 @@
package com.geeksville.mesh.service
open class RadioNotConnectedException(message: String = "Not connected to radio") :
BLEException(message)