MCPcopy Create free account
hub / github.com/devfile/devworkspace-operator / Error

Method Error

pkg/dwerrors/errors.go:54–62  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

52}
53
54func (e *FailError) Error() string {
55 if e.Err != nil {
56 if e.Message != "" {
57 return fmt.Sprintf("%s: %s", e.Message, e.Err)
58 }
59 return e.Err.Error()
60 }
61 return e.Message
62}
63
64func (e *FailError) Unwrap() error {
65 return e.Err

Calls

no outgoing calls