github.com/replicatedhq/ship@v0.55.0/pkg/util/errors/error.go (about) 1 package errors 2 3 // FetchFilesError is used by implementations of FileFetcher to represent an error 4 // fetching the upstream resource 5 type FetchFilesError struct { 6 Message string 7 } 8 9 func (f FetchFilesError) Error() string { 10 return f.Message 11 }