FacebookExceptionpublic class FacebookException extends Exception A FacebookException is thrown by the FacebookRestClient to indicate that it encountered
an error when trying to process an API request to Facebook. In most cases, the error
codes are specified by a response from the Facebook API server, though there are a
few exceptions. |
Fields Summary |
---|
private static final long | serialVersionUIDSerialization thing. | private int | _code |
Constructors Summary |
---|
public FacebookException(int code, String msg)Constructor
super(msg);
_code = code;
|
Methods Summary |
---|
public int | getCode()See http://wiki.developers.facebook.com/index.php/Error_codes for more information
return _code;
|
|