errorWithExitCode is just a way to transport the exit code to the main package
| 29 | |
| 30 | // errorWithExitCode is just a way to transport the exit code to the main package |
| 31 | type errorWithExitCode struct { |
| 32 | value int |
| 33 | cause error |
| 34 | } |
| 35 | |
| 36 | var _ ExitCode = errorWithExitCode{} |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected