cake_wallet/cw_ethereum/lib/ethereum_exceptions.dart
2023-03-16 19:24:21 +02:00

6 lines
No EOL
197 B
Dart

class EthereumTransactionCreationException implements Exception {
EthereumTransactionCreationException();
@override
String toString() => 'Wrong balance. Not enough Ether on your balance.';
}