Files
flutter/lib/exceptions/no_such_entry_exception.dart
2025-01-24 17:01:27 +01:00

9 lines
157 B
Dart

class NoSuchEntryException implements Exception {
const NoSuchEntryException();
@override
String toString() {
return 'No such entry found';
}
}