()
| 218 | } |
| 219 | |
| 220 | func ExampleWrapError() (error, error) { |
| 221 | // Wrap io.EOF with the current stack-trace and return it |
| 222 | return nil, Wrap(io.EOF, 0) |
| 223 | } |
| 224 | |
| 225 | func ExampleWrapError_skip() { |
| 226 | defer func() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…