mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
9 lines
157 B
Dart
9 lines
157 B
Dart
class NoSuchEntryException implements Exception {
|
|
const NoSuchEntryException();
|
|
|
|
@override
|
|
String toString() {
|
|
return 'No such entry found';
|
|
}
|
|
}
|