2020-01-04 19:31:52 +00:00
|
|
|
class WalletCreationException implements Exception {
|
|
|
|
WalletCreationException({this.message});
|
2020-01-08 12:26:34 +00:00
|
|
|
|
|
|
|
final String message;
|
2020-10-09 18:34:21 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() => message;
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|