cake_wallet/lib/buy/buy_exception.dart

9 lines
208 B
Dart
Raw Normal View History

class BuyException implements Exception {
BuyException({required this.title, required this.content});
final String title;
final String content;
@override
String toString() => '$title: $content';
}