( _ context.Context, cause error, _ string, _ []string, _ proto.Message, )
| 283 | func (e *internalError) Unwrap() error { return e.Cause() } |
| 284 | |
| 285 | func decodeInternalError( |
| 286 | _ context.Context, cause error, _ string, _ []string, _ proto.Message, |
| 287 | ) error { |
| 288 | return newInternalError(cause) |
| 289 | } |
| 290 | |
| 291 | func init() { |
| 292 | errors.RegisterWrapperDecoder(errors.GetTypeKey((*notInternalError)(nil)), decodeNotInternalError) |
nothing calls this directly
no test coverage detected
searching dependent graphs…