github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+incompatible/actor/actionerror/route_already_exists_error.go (about) 1 package actionerror 2 3 import "fmt" 4 5 // RouteAlreadyExistsError is returned when a route already exists 6 type RouteAlreadyExistsError struct { 7 Route string 8 Err error 9 } 10 11 func (e RouteAlreadyExistsError) Error() string { 12 if e.Err != nil { 13 return e.Err.Error() 14 } 15 return fmt.Sprintf("Route %s already exists.", e.Route) 16 }