Files
be_happy_public/lib/data/exceptions/auth_exception.dart
2026-05-12 12:02:40 +03:00

10 lines
233 B
Dart

class AuthException implements Exception {
int attemptsLeft;
String? description;
AuthException(this.description, this.attemptsLeft);
@override
String toString() => description ?? "Ошибка авторизации";
}