github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+incompatible/api/cloudcontroller/ccerror/not_found_error.go (about) 1 package ccerror 2 3 // NotFoundError wraps a generic 404 error. 4 type NotFoundError struct { 5 Message string 6 } 7 8 func (e NotFoundError) Error() string { 9 return e.Message 10 }