Files
workavia-mail-front/model/lib/exceptions/token_oidc_exceptions.dart
T
2026-03-10 11:06:16 +07:00

30 lines
812 B
Dart

import 'package:core/domain/exceptions/app_base_exception.dart';
class AccessTokenIsNullException extends AppBaseException {
const AccessTokenIsNullException([super.message]);
@override
String get exceptionName => 'AccessTokenIsNullException';
}
class RefreshTokenIsNullException extends AppBaseException {
const RefreshTokenIsNullException([super.message]);
@override
String get exceptionName => 'RefreshTokenIsNullException';
}
class TokenIdIsNullException extends AppBaseException {
const TokenIdIsNullException([super.message]);
@override
String get exceptionName => 'TokenIdIsNullException';
}
class ExpiresTimeIsNullException extends AppBaseException {
const ExpiresTimeIsNullException([super.message]);
@override
String get exceptionName => 'ExpiresTimeIsNullException';
}