ParseError signals errors while parsing the simple and flat text-based exchange format.
| 39 | // ParseError signals errors while parsing the simple and flat text-based |
| 40 | // exchange format. |
| 41 | type ParseError struct { |
| 42 | Line int |
| 43 | Msg string |
| 44 | } |
| 45 | |
| 46 | // Error implements the error interface. |
| 47 | func (e ParseError) Error() string { |
nothing calls this directly
no outgoing calls
no test coverage detected