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

Method Error

cli/root.go:1281–1286  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1279var _ error = (*exitError)(nil)
1280
1281func (e *exitError) Error() string {
1282 if e.err != nil {
1283 return fmt.Sprintf("exit code %d: %v", e.code, e.err)
1284 }
1285 return fmt.Sprintf("exit code %d", e.code)
1286}
1287
1288func (e *exitError) Unwrap() error {
1289 return e.err

Callers 15

recvFromSerdesMethod · 0.45
recvLoopMethod · 0.45
sendLoopMethod · 0.45
closeIdempotentMethod · 0.45
NewConnMethod · 0.45
handleRPCMethod · 0.45
recordLatenciesMethod · 0.45
TestRandomElementFunction · 0.45
TimeFunction · 0.45
TestCliTemplateCreateFunction · 0.45

Calls

no outgoing calls