MCPcopy Index your code
hub / github.com/coder/coder / BuildError

Struct BuildError

coderd/wsbuilder/wsbuilder.go:271–276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

269var ErrParameterValidation = xerrors.New("parameter validation failed")
270
271type BuildError struct {
272 // Status is a suitable HTTP status code
273 Status int
274 Message string
275 Wrapped error
276}
277
278func (e BuildError) Error() string {
279 if e.Wrapped == nil {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected