| 904 | } |
| 905 | |
| 906 | type parseFormatError struct { |
| 907 | msg string |
| 908 | wrapped error |
| 909 | } |
| 910 | |
| 911 | func newParseFormatError(msg string, wrapped error) error { |
| 912 | return parseFormatError{msg: msg, wrapped: wrapped} |
nothing calls this directly
no outgoing calls
no test coverage detected