Extract RadioNotConnectedException out of RadioInterfaceService

This commit is contained in:
Mike Cumings
2022-04-22 10:09:30 -07:00
parent 0d4ddaf9a0
commit 166a56a75d
2 changed files with 4 additions and 4 deletions

View File

@@ -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...

View File

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