TF-606 Implement refresh token when access token expired

This commit is contained in:
dab246
2022-06-03 17:17:31 +07:00
committed by Dat H. Pham
parent 02a5fa4b4f
commit 693f4dbc15
14 changed files with 248 additions and 54 deletions
@@ -27,4 +27,12 @@ class InvalidBaseUrl extends AuthenticationException {
@override
List<Object?> get props => [];
}
class NotFoundAccessTokenException implements Exception {
NotFoundAccessTokenException();
}
class AccessTokenInvalidException implements Exception {
AccessTokenInvalidException();
}