| 66 | } |
| 67 | |
| 68 | type errorImpl struct { |
| 69 | field string |
| 70 | kind string |
| 71 | message string |
| 72 | } |
| 73 | |
| 74 | func NewError(field, kind, message string) Error { |
| 75 | return errorImpl{field, kind, message} |
nothing calls this directly
no outgoing calls
no test coverage detected