stack_wallet/lib/exceptions/exchange/majestic_bank/mb_exception.dart
2023-02-04 11:15:42 -06:00

5 lines
165 B
Dart

import 'package:stackwallet/exceptions/exchange/exchange_exception.dart';
class MBException extends ExchangeException {
MBException(super.message, super.type);
}