sourceError("Unexpected token: " + tokenType);
}
public String consumeStringValue() throws IOException {
if(jsonReader.peek() != JsonToken.STRING) {
throw new MalformedJsonException("Expected: " + JsonToken.STRING);
}
return jsonReader.nextString();
}