github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/actor/actionerror/shared_service_instance_not_found.go (about)

     1  package actionerror
     2  
     3  // SharedServiceInstanceNotFoundError is returned when a service instance is not found when performing a share service.
     4  type SharedServiceInstanceNotFoundError struct {
     5  }
     6  
     7  func (e SharedServiceInstanceNotFoundError) Error() string {
     8  	return "Specified instance not found or not a managed service instance. Sharing is not supported for user provided services."
     9  }