diff --git a/app/src/main/java/com/geeksville/mesh/service/RadioInterfaceService.kt b/app/src/main/java/com/geeksville/mesh/service/RadioInterfaceService.kt index 559d8c67..953db4b0 100644 --- a/app/src/main/java/com/geeksville/mesh/service/RadioInterfaceService.kt +++ b/app/src/main/java/com/geeksville/mesh/service/RadioInterfaceService.kt @@ -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... diff --git a/app/src/main/java/com/geeksville/mesh/service/RadioNotConnectedException.kt b/app/src/main/java/com/geeksville/mesh/service/RadioNotConnectedException.kt new file mode 100644 index 00000000..21454800 --- /dev/null +++ b/app/src/main/java/com/geeksville/mesh/service/RadioNotConnectedException.kt @@ -0,0 +1,4 @@ +package com.geeksville.mesh.service + +open class RadioNotConnectedException(message: String = "Not connected to radio") : + BLEException(message) \ No newline at end of file