stack_wallet/lib/exceptions/exchange/pair_unavailable_exception.dart

6 lines
191 B
Dart
Raw Normal View History

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