github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+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  }