workouttest_app/lib/util/not_found_exception.dart
2020-09-16 15:41:39 +02:00

4 lines
115 B
Dart

class NotFoundException implements Exception {
final String message;
const NotFoundException({this.message});
}