AuthException.tokenExpired constructor
AuthException.tokenExpired()
Implementation
factory AuthException.tokenExpired() {
return AuthException(
message: 'Your session has expired. Please log in again.',
code: 'TOKEN_EXPIRED',
);
}