github.com/randomtask1155/cli@v6.41.1-0.20181227003417-a98eed78cbde+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 }