WithInternalError adds internal error information to the error
(err error)
| 31 | |
| 32 | // WithInternalError adds internal error information to the error |
| 33 | func (e *HTTPError) WithInternalError(err error) *HTTPError { |
| 34 | e.InternalError = err |
| 35 | return e |
| 36 | } |
| 37 | |
| 38 | // WithInternalMessage adds internal message information to the error |
| 39 | func (e *HTTPError) WithInternalMessage(fmtString string, args ...interface{}) *HTTPError { |
no outgoing calls