String msg = json.optString(TwitterAPI.ErrorField.ERROR.toString());
if (null != msg && 0 < msg.length()) {
System.out.println(json);
if (msg.equals("Not authorized")) {
throw new UnauthorizedException();
} else {
throw new TwitterAPIException(msg);
}
}
}