cake_wallet/cw_ethereum/lib/ethereum_exceptions.dart

6 lines
197 B
Dart
Raw Normal View History

2023-03-16 17:24:21 +00:00
class EthereumTransactionCreationException implements Exception {
EthereumTransactionCreationException();
@override
String toString() => 'Wrong balance. Not enough Ether on your balance.';
}