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