()
| 13 | type JSONFormatError string |
| 14 | |
| 15 | func (err JSONFormatError) Error() string { |
| 16 | return string(err) |
| 17 | } |
| 18 | |
| 19 | // ParanoidUnmarshalJSONObject unmarshals data as a JSON object, but failing on the slightest unexpected aspect |
| 20 | // (including duplicated keys, unrecognized keys, and non-matching types). Uses fieldResolver to |
no outgoing calls