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