MCPcopy Create free account
hub / github.com/Mirantis/cri-dockerd / CodeExitError

Struct CodeExitError

utils/exec.go:229–232  ·  view source on GitHub ↗

CodeExitError is an implementation of ExitError consisting of an error object and an exit code (the upper bits of os.exec.ExitStatus).

Source from the content-addressed store, hash-verified

227// CodeExitError is an implementation of ExitError consisting of an error object
228// and an exit code (the upper bits of os.exec.ExitStatus).
229type CodeExitError struct {
230 Err error
231 Code int
232}
233
234var _ ExitError = CodeExitError{}
235

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected