stack_wallet/lib/exceptions/wallet/insufficient_balance_exception.dart
2023-01-20 12:25:32 -06:00

5 lines
166 B
Dart

import 'package:stackwallet/exceptions/sw_exception.dart';
class InsufficientBalanceException extends SWException {
InsufficientBalanceException(super.message);
}