github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+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 }