WithInternalError adds internal error information to the error
(err error)
| 105 | |
| 106 | // WithInternalError adds internal error information to the error |
| 107 | func (e *HTTPError) WithInternalError(err error) *HTTPError { |
| 108 | e.InternalError = err |
| 109 | return e |
| 110 | } |
| 111 | |
| 112 | // WithInternalMessage adds internal message information to the error |
| 113 | func (e *HTTPError) WithInternalMessage(fmtString string, args ...interface{}) *HTTPError { |
no outgoing calls
no test coverage detected