github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/actor/actionerror/resource_already_exists_error.go (about) 1 package actionerror 2 3 // ResourceAlreadyExistsError is returned when an identical resource already exists 4 type ResourceAlreadyExistsError struct { 5 Message string 6 } 7 8 func (e ResourceAlreadyExistsError) Error() string { 9 return e.Message 10 }