9 lines
278 B
Dart
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';
|
|
}
|