e_receipt_mobile/lib/domain/exceptions/auth_exceptions.dart

14 lines
291 B
Dart
Raw Permalink Normal View History

2026-04-01 17:58:59 +00:00
class PasswordUpdateRequiredException implements Exception {
const PasswordUpdateRequiredException({
required this.userId,
this.message = 'Password update required',
});
final String userId;
final String message;
@override
String toString() => message;
}