if (errorCode == API_EC_PARAM_ACCESS_TOKEN)
return new FacebookOAuthException(String.valueOf(errorCode), message, errorCode, errorSubcode, httpStatusCode);
// Don't recognize this exception type? Just go with the standard
// FacebookResponseStatusException.
return new FacebookResponseStatusException(errorCode, message);
}