()
| 281 | func (e *internalError) Error() string { return e.cause.Error() } |
| 282 | func (e *internalError) Cause() error { return e.cause } |
| 283 | func (e *internalError) Unwrap() error { return e.Cause() } |
| 284 | |
| 285 | func decodeInternalError( |
| 286 | _ context.Context, cause error, _ string, _ []string, _ proto.Message, |
no test coverage detected