github.com/jenspinney/cli@v6.42.1-0.20190207184520-7450c600020e+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  }