github.com/LukasHeimann/cloudfoundrycli@v7.1.0+incompatible/actor/actionerror/service_instance_already_shared_error.go (about) 1 package actionerror 2 3 // ServiceInstanceAlreadySharedError is returned when attempting to shared a 4 // service instance to a space in which the service instance has already been 5 // shared with. 6 type ServiceInstanceAlreadySharedError struct{} 7 8 func (e ServiceInstanceAlreadySharedError) Error() string { 9 return "The service instance has already been shared with this space" 10 }