InvalidTokenError is a case where the "RefreshToken" failed to complete as a result of invalid credentials. Error contains the reason of the failure.
| 177 | // InvalidTokenError is a case where the "RefreshToken" failed to complete |
| 178 | // as a result of invalid credentials. Error contains the reason of the failure. |
| 179 | type InvalidTokenError string |
| 180 | |
| 181 | func (e InvalidTokenError) Error() string { |
| 182 | return string(e) |