| 122 | func (e errWrapped) Unwrap() error { return e.cause } |
| 123 | |
| 124 | type errShort struct{} |
| 125 | |
| 126 | func (e errShort) Error() string { return "msgp: too few bytes left to read object" } |
| 127 | func (e errShort) Resumable() bool { return false } |
nothing calls this directly
no outgoing calls
no test coverage detected