mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
20 lines
578 B
Dart
20 lines
578 B
Dart
import 'package:cake_wallet/exchange/exchange_provider_description.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
class TradeNotFoundException implements Exception {
|
|
TradeNotFoundException(this.tradeId, {this.provider, this.description = ''});
|
|
|
|
String tradeId;
|
|
ExchangeProviderDescription provider;
|
|
String description;
|
|
|
|
@override
|
|
String toString() {
|
|
var text = tradeId != null && provider != null
|
|
? S.current.trade_id_not_found(tradeId, provider.title)
|
|
: S.current.trade_not_found;
|
|
text += ' $description';
|
|
|
|
return text;
|
|
}
|
|
}
|