4 lines
115 B
Dart
4 lines
115 B
Dart
class NotFoundException implements Exception {
|
|
final String message;
|
|
const NotFoundException({this.message});
|
|
} |