github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/command/translatableerror/shared_service_instance_not_found_error.go (about)

     1  package translatableerror
     2  
     3  type SharedServiceInstanceNotFoundError struct {
     4  }
     5  
     6  func (SharedServiceInstanceNotFoundError) Error() string {
     7  	return "Specified instance not found or not a managed service instance. Sharing is not supported for user provided services."
     8  }
     9  
    10  func (e SharedServiceInstanceNotFoundError) Translate(translate func(string, ...interface{}) string) string {
    11  	return translate(e.Error())
    12  }