workouttest_util/lib/util/not_found_exception.dart
2023-01-28 12:53:16 +01:00

14 lines
417 B
Dart

class NotFoundException implements Exception {
final String message;
const NotFoundException({required this.message});
}
class WorkoutTestException implements Exception {
static const String CUSTOMER_EXISTS = "customer-exists";
static const String LOGIN_CANCELLED = "login-cancelled";
final String message;
final String code;
const WorkoutTestException({required this.message, required this.code});
}