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