ArrayError is an error returned when decoding a fix-sized array of the wrong size
| 156 | // when decoding a fix-sized array |
| 157 | // of the wrong size |
| 158 | type ArrayError struct { |
| 159 | Wanted uint32 |
| 160 | Got uint32 |
| 161 | ctx string |
| 162 | } |
| 163 | |
| 164 | // Error implements the error interface |
| 165 | func (a ArrayError) Error() string { |
nothing calls this directly
no outgoing calls
no test coverage detected