fix: Prefer reusing AppBaseException instead of redefining the exception contract CacheException and RemoteException
This commit is contained in:
@@ -34,7 +34,7 @@ class TokenOIDC with EquatableMixin {
|
||||
|
||||
final accessToken = queryParams['access_token'];
|
||||
if (accessToken == null || accessToken.isEmpty) {
|
||||
throw AccessTokenIsNullException();
|
||||
throw const AccessTokenIsNullException();
|
||||
}
|
||||
|
||||
final refreshToken = queryParams['refresh_token'] ?? '';
|
||||
|
||||
Reference in New Issue
Block a user