Line data Source code
1 : /// {@template custom_exception}
2 : /// A fake custom exception.
3 : /// {@endtemplate}
4 : class CustomException implements Exception {
5 : /// {@macro custom_exception}
6 1 : const CustomException({
7 : required this.message,
8 : });
9 :
10 : /// A fake exception message.
11 : final String message;
12 : }
|