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