Klasse FacebookQueryParseException

Alle implementierten Schnittstellen:
Serializable

Indicates that the Facebook Graph API endpoint returned JSON which indicates an error condition related to FQL query parsing.

Example: { "error": { "type": "QueryParseException", "message": "Some of the aliases you requested do not exist: xxxxx" } }

Seit:
1.6
Autor:
Mark Allen
Siehe auch:
  • Konstruktordetails

    • FacebookQueryParseException

      public FacebookQueryParseException(String errorType, String errorMessage, Integer errorCode, Integer errorSubcode, Integer httpStatusCode, String userTitle, String userMessage, Boolean isTransient, JsonObject rawError)
      Creates an exception with the given error type and message.
      Parameter:
      errorType - Value of the Facebook response attribute error.type.
      errorMessage - Value of the Facebook response attribute error.message.
      errorCode - Value of the Facebook response attribute error.code.
      errorSubcode - Value of the Facebook response attribute error.error_subcode.
      httpStatusCode - The HTTP status code returned by the server, e.g. 500.
      userTitle - Value of the Facebook response attribute error.error_user_title.
      userMessage - Value of the Facebook response attribute error.error_user_message.