mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
6 lines
211 B
Dart
6 lines
211 B
Dart
|
class EthereumMnemonicIsIncorrectException implements Exception {
|
||
|
@override
|
||
|
String toString() =>
|
||
|
'Ethereum mnemonic has incorrect format. Mnemonic should contain 12 or 24 words separated by space.';
|
||
|
}
|