InvalidTimestamp is returned when an invalid timestamp is encountered
| 223 | |
| 224 | // InvalidTimestamp is returned when an invalid timestamp is encountered |
| 225 | type InvalidTimestamp struct { |
| 226 | Nanos int64 // value of the nano, if invalid |
| 227 | FieldLength int // Unexpected field length. |
| 228 | ctx string |
| 229 | } |
| 230 | |
| 231 | // Error implements the error interface |
| 232 | func (u InvalidTimestamp) Error() (str string) { |
nothing calls this directly
no outgoing calls
no test coverage detected