github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/command/translatableerror/invalid_refresh_token_error.go (about) 1 package translatableerror 2 3 type InvalidRefreshTokenError struct { 4 } 5 6 func (InvalidRefreshTokenError) Error() string { 7 return "The token expired, was revoked, or the token ID is incorrect. Please log back in to re-authenticate." 8 } 9 10 func (e InvalidRefreshTokenError) Translate(translate func(string, ...interface{}) string) string { 11 return translate(e.Error()) 12 }