ExitCodeError is to allow the program to exit with status code without outputting an error message.
| 27 | |
| 28 | // ExitCodeError is to allow the program to exit with status code without outputting an error message. |
| 29 | type ExitCodeError struct { |
| 30 | exitCode int |
| 31 | } |
| 32 | |
| 33 | func NewExitCoderErr(exitCode int) ExitCodeError { |
| 34 | return ExitCodeError{ |
nothing calls this directly
no outgoing calls
no test coverage detected