Error implements the error interface.
()
| 45 | |
| 46 | // Error implements the error interface. |
| 47 | func (e ParseError) Error() string { |
| 48 | return fmt.Sprintf("text format parsing error in line %d: %s", e.Line, e.Msg) |
| 49 | } |
| 50 | |
| 51 | // TextParser is used to parse the simple and flat text-based exchange format. |
| 52 | // |
no outgoing calls