| 1 | class BitcoinMnemonicIsIncorrectException implements Exception { |
| 2 | @override |
| 3 | String toString() => |
| 4 | 'Bitcoin mnemonic has incorrect format. Mnemonic should contain 12 or 24 words separated by space.'; |
| 5 | } |
| 6 | |
| 7 | class LitecoinMnemonicIsIncorrectException implements Exception { |
| 8 | @override |
| 9 | String toString() => |
| 10 | 'Litecoin mnemonic has incorrect format. Mnemonic should contain 24 words separated by space.'; |
| 11 | } |