MCPcopy Create free account
hub / github.com/OverloadBlitz/cloudcent-cli / programError

Struct programError

cmd/pulumi.go:803–806  ·  view source on GitHub ↗

programError wraps a user-program execution failure and carries the captured stderr.

Source from the content-addressed store, hash-verified

801
802// programError wraps a user-program execution failure and carries the captured stderr.
803type programError struct {
804 cause error
805 stderr string
806}
807
808func (e *programError) Error() string { return e.cause.Error() }
809func (e *programError) Unwrap() error { return e.cause }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected