Files
neomovies-mobile/lib/data/exceptions/auth_exceptions.dart
2025-07-13 14:01:29 +03:00

10 lines
235 B
Dart

class UnverifiedAccountException implements Exception {
final String email;
final String? message;
UnverifiedAccountException(this.email, {this.message});
@override
String toString() => message ?? 'Account not verified';
}