ErrorHinter is implemented by types that can provide user-informing detail strings. This is implemented by withHint here, withIssueLink, assertionFailure and pgerror.Error.
| 93 | // user-informing detail strings. This is implemented by withHint |
| 94 | // here, withIssueLink, assertionFailure and pgerror.Error. |
| 95 | type ErrorHinter interface { |
| 96 | ErrorHint() string |
| 97 | } |
| 98 | |
| 99 | // WithDetail decorates an error with a textual detail. |
| 100 | // The detail may contain PII and thus will not reportable. |
no outgoing calls
no test coverage detected
searching dependent graphs…