mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
8 lines
No EOL
179 B
Dart
8 lines
No EOL
179 B
Dart
class CreationTransactionException implements Exception {
|
|
CreationTransactionException({this.message});
|
|
|
|
final String message;
|
|
|
|
@override
|
|
String toString() => message;
|
|
} |