Error is a dummy decodeable packet that is simply an error
| 16 | |
| 17 | // Error is a dummy decodeable packet that is simply an error |
| 18 | type Error struct { |
| 19 | Error error |
| 20 | } |
| 21 | |
| 22 | func (Error) ID() int32 { return -1 } |
| 23 | func (Error) Decode(encoding.Reader) error { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected