Vladimir
12/21/2024, 2:34 PMsealed class
to group exceptions togetherVladimir
12/21/2024, 2:35 PMsealed class BluetoothException : Exception() {
class BluetoothNotEnabled : BluetoothException()
class PrinterNotFound : BluetoothException()
class PrinterConnectionFailed(override val message: String?) : BluetoothException()
}
Daniel Weidensdörfer
12/22/2024, 6:09 PM