github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/command/translatableerror/authorization_endpoint_not_found_error.go (about) 1 package translatableerror 2 3 type AuthorizationEndpointNotFoundError struct { 4 } 5 6 func (AuthorizationEndpointNotFoundError) Error() string { 7 return "No Authorization Endpoint Found" 8 } 9 10 func (e AuthorizationEndpointNotFoundError) Translate(translate func(string, ...interface{}) string) string { 11 return translate(e.Error()) 12 }