mirror of
https://gitlab.com/foxixus/neomovies_mobile.git
synced 2025-10-28 01:18:50 +05:00
10 lines
235 B
Dart
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';
|
||
|
|
}
|