Error returns the error message contained in the DecodeError.
()
| 68 | |
| 69 | // Error returns the error message contained in the DecodeError. |
| 70 | func (e *DecodeError) Error() string { |
| 71 | return "toml: " + e.message |
| 72 | } |
| 73 | |
| 74 | // String returns the human-readable contextualized error. This string is |
| 75 | // multi-line. |
no outgoing calls