dev
dart 9 lines 209 Bytes
Raw
1 class BuyException implements Exception {
2 BuyException({required this.title, required this.content});
3
4 final String title;
5 final String content;
6
7 @override
8 String toString() => '$title: $content';
9 }