github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/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 }