CakeWallet/lib/buy/buy_exception.dart

10 lines
209 B
Dart
Raw Permalink 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';
}