cake_wallet/cw_ethereum/lib/ethereum_mnemonics_exception.dart

6 lines
211 B
Dart
Raw Normal View History

class EthereumMnemonicIsIncorrectException implements Exception {
@override
String toString() =>
'Ethereum mnemonic has incorrect format. Mnemonic should contain 12 or 24 words separated by space.';
}