stack_wallet/lib/exceptions/sw_exception.dart
2023-05-30 10:41:27 -06:00

11 lines
226 B
Dart

// generic stack wallet exception which all other custom exceptions should
// extend from
class SWException implements Exception {
SWException(this.message);
final String message;
@override
toString() => message;
}