mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 20:19:25 +00:00
9 lines
No EOL
208 B
Dart
9 lines
No EOL
208 B
Dart
class BuyException implements Exception {
|
|
BuyException({required this.title, required this.content});
|
|
|
|
final String title;
|
|
final String content;
|
|
|
|
@override
|
|
String toString() => '$title: $content';
|
|
} |