Files
workavia-mail-front/lib/features/login/domain/exceptions/logout_exception.dart
T

9 lines
278 B
Dart

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