programError wraps a user-program execution failure and carries the captured stderr.
| 801 | |
| 802 | // programError wraps a user-program execution failure and carries the captured stderr. |
| 803 | type programError struct { |
| 804 | cause error |
| 805 | stderr string |
| 806 | } |
| 807 | |
| 808 | func (e *programError) Error() string { return e.cause.Error() } |
| 809 | func (e *programError) Unwrap() error { return e.cause } |
nothing calls this directly
no outgoing calls
no test coverage detected