CodeExitError is an implementation of ExitError consisting of an error object and an exit code (the upper bits of os.exec.ExitStatus).
| 29 | // CodeExitError is an implementation of ExitError consisting of an error object |
| 30 | // and an exit code (the upper bits of os.exec.ExitStatus). |
| 31 | type CodeExitError struct { |
| 32 | Err error |
| 33 | Code int |
| 34 | } |
| 35 | |
| 36 | var _ ExitError = CodeExitError{} |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected