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

9 lines
258 B
Dart

class AuthBlockException implements Exception {
String description = "Неверный код. Вы временно заблокированы, попробуйте позже.";
AuthBlockException();
@override
String toString() => description;
}