(msg string, wrapped error)
| 909 | } |
| 910 | |
| 911 | func newParseFormatError(msg string, wrapped error) error { |
| 912 | return parseFormatError{msg: msg, wrapped: wrapped} |
| 913 | } |
| 914 | |
| 915 | // Error implements error. |
| 916 | func (e parseFormatError) Error() string { |
no outgoing calls
no test coverage detected