14 lines
417 B
Dart
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});
|
|
}
|