DecodeError decodes an error.
(ctx context.Context, enc EncodedError)
| 41 | |
| 42 | // DecodeError decodes an error. |
| 43 | func DecodeError(ctx context.Context, enc EncodedError) error { return errbase.DecodeError(ctx, enc) } |
| 44 | |
| 45 | // SafeDetailer is an interface that can be implemented by errors that |
| 46 | // can provide PII-free additional strings suitable for reporting or |
searching dependent graphs…