Error is the interface satisfied by all of the errors that originate from this package.
| 31 | // by all of the errors that originate |
| 32 | // from this package. |
| 33 | type Error interface { |
| 34 | error |
| 35 | |
| 36 | // Resumable returns whether |
| 37 | // or not the error means that |
| 38 | // the stream of data is malformed |
| 39 | // and the information is unrecoverable. |
| 40 | Resumable() bool |
| 41 | } |
| 42 | |
| 43 | // contextError allows msgp Error instances to be enhanced with additional |
| 44 | // context about their origin. |
no outgoing calls
no test coverage detected
searching dependent graphs…