(errStr string, path Path, index int)
| 109 | } |
| 110 | |
| 111 | func MakePathError(errStr string, path Path, index int) error { |
| 112 | return PathError{fmt.Sprintf("%s at index:%d (%s)", errStr, index, FormatPath(path))} |
| 113 | } |
| 114 | |
| 115 | type SetTypeError struct { |
| 116 | Err string |
no test coverage detected