cake_wallet/cw_ethereum/lib/ethereum_exceptions.dart
2023-03-31 20:41:56 +02:00

9 lines
281 B
Dart

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