Err returns a pointer to the accumulated error for passing to buffer methods
()
| 124 | |
| 125 | // Err returns a pointer to the accumulated error for passing to buffer methods |
| 126 | func (c *ReadContext) Err() *Error { |
| 127 | return &c.err |
| 128 | } |
| 129 | |
| 130 | // SetError sets the error state if no error has occurred yet (first error wins) |
| 131 | func (c *ReadContext) SetError(e Error) { |
no outgoing calls