mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
31 lines
862 B
Dart
31 lines
862 B
Dart
|
import 'package:cw_core/crypto_currency.dart';
|
||
|
|
||
|
class TransactionWrongBalanceException implements Exception {
|
||
|
TransactionWrongBalanceException(this.currency);
|
||
|
|
||
|
final CryptoCurrency currency;
|
||
|
}
|
||
|
|
||
|
class TransactionNoInputsException implements Exception {}
|
||
|
|
||
|
class TransactionNoFeeException implements Exception {}
|
||
|
|
||
|
class TransactionNoDustException implements Exception {}
|
||
|
|
||
|
class TransactionNoDustOnChangeException implements Exception {
|
||
|
TransactionNoDustOnChangeException(this.max, this.min);
|
||
|
|
||
|
final String max;
|
||
|
final String min;
|
||
|
}
|
||
|
|
||
|
class TransactionCommitFailed implements Exception {}
|
||
|
|
||
|
class TransactionCommitFailedDustChange implements Exception {}
|
||
|
|
||
|
class TransactionCommitFailedDustOutput implements Exception {}
|
||
|
|
||
|
class TransactionCommitFailedDustOutputSendAll implements Exception {}
|
||
|
|
||
|
class TransactionCommitFailedVoutNegative implements Exception {}
|