* @return QuestionVotes
* @throws FacebookException when provided string is not a valid JSON string.
*/
public static QuestionVotes createQuestionVotes(String rawJSON) throws FacebookException {
try {
JSONObject json = new JSONObject(rawJSON);
return questionVotesConstructor.newInstance(json);
} catch (InstantiationException e) {
throw new FacebookException(e);
} catch (IllegalAccessException e) {
throw new AssertionError(e);