Files
bluetooth_low_energy/lib/src/exception.dart
2021-06-10 18:06:02 +08:00

10 lines
168 B
Dart

import 'bluetooth.dart';
abstract class Exception {
String get message;
}
abstract class ConnectionLostException extends Exception {
Peripheral get peripheral;
}