ExtensionTypeError is an error type returned when there is a mis-match between an extension type and the type encoded on the wire
| 58 | // when there is a mis-match between an extension type |
| 59 | // and the type encoded on the wire |
| 60 | type ExtensionTypeError struct { |
| 61 | Got int8 |
| 62 | Want int8 |
| 63 | } |
| 64 | |
| 65 | // Error implements the error interface |
| 66 | func (e ExtensionTypeError) Error() string { |
nothing calls this directly
no outgoing calls
no test coverage detected