Klasse FacebookResponseStatusException

Alle implementierten Schnittstellen:
Serializable

Indicates that the Legacy REST Facebook endpoint returned JSON which indicates an error condition.

This exception may also be thrown when executing certain operations against the Graph API, e.g. FQL queries or Batch API calls.

Example: {"error_code": 2, "error_msg": "The service is not available at this time.", ...}.

Autor:
Mark Allen
Siehe auch:
  • Konstruktordetails

    • FacebookResponseStatusException

      public FacebookResponseStatusException(Integer errorCode, String errorMessage, JsonObject rawError)
      Creates an exception with the given message and error code.
      Parameter:
      errorCode - Value of the Facebook response attribute error_code.
      errorMessage - Value of the Facebook response attribute error_msg.
  • Methodendetails

    • getErrorCode

      Gets the Facebook API error code.
      Gibt zurück:
      The Facebook API error code.
    • getErrorMessage

      Gets the Facebook API error message.
      Gibt zurück:
      The Facebook API error message.