(err error)
| 80 | func (e *fundamental) Error() string { return e.msg } |
| 81 | |
| 82 | func network(err error) error { |
| 83 | enc := errbase.EncodeError(context.Background(), err) |
| 84 | return errbase.DecodeError(context.Background(), enc) |
| 85 | } |
| 86 | |
| 87 | // This test demonstrates that the equivalence |
| 88 | // of errors is preserved over the network. |
no test coverage detected
searching dependent graphs…