com.restfb.exception
Class FacebookResponseStatusException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.restfb.exception.FacebookException
                  extended by com.restfb.exception.FacebookResponseStatusException
All Implemented Interfaces:
Serializable

public class FacebookResponseStatusException
extends FacebookException

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.", ...}.

Author:
Mark Allen
See Also:
Serialized Form

Constructor Summary
FacebookResponseStatusException(Integer errorCode, String errorMessage)
          Creates an exception with the given message and error code.
 
Method Summary
 Integer getErrorCode()
          Gets the Facebook API error code.
 String getErrorMessage()
          Gets the Facebook API error message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FacebookResponseStatusException

public FacebookResponseStatusException(Integer errorCode,
                                       String errorMessage)
Creates an exception with the given message and error code.

Parameters:
errorCode - Value of the Facebook response attribute error_code.
errorMessage - Value of the Facebook response attribute error_msg.
Method Detail

getErrorCode

public Integer getErrorCode()
Gets the Facebook API error code.

Returns:
The Facebook API error code.

getErrorMessage

public String getErrorMessage()
Gets the Facebook API error message.

Returns:
The Facebook API error message.


RestFB 1.6.8. Copyright © 2010-2011 Mark Allen. All Rights Reserved.