FileDocCategorySizeDatePackage
FacebookApiException.javaAPI DocGoogle Facebook API v1.46438Tue Oct 23 20:16:10 BST 2007com.facebook.api.schema

FacebookApiException

public class FacebookApiException extends Object

Java class for FacebookApiException complex type.

The following schema fragment specifies the expected content contained within this class.

<complexType name="FacebookApiException">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="error_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="error_msg" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="request_args">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence maxOccurs="unbounded" minOccurs="0">
<element name="arg" type="{http://api.facebook.com/1.0/}arg" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected int
errorCode
protected String
errorMsg
protected RequestArgs
requestArgs
Constructors Summary
Methods Summary
public synchronized intgetErrorCode()
Gets the value of the errorCode property.

        return errorCode;
    
public synchronized java.lang.StringgetErrorMsg()
Gets the value of the errorMsg property.

return
possible object is {@link String }

        return errorMsg;
    
public synchronized com.facebook.api.schema.FacebookApiException$RequestArgsgetRequestArgs()
Gets the value of the requestArgs property.

return
possible object is {@link FacebookApiException.RequestArgs }

        return requestArgs;
    
public synchronized voidsetErrorCode(int value)
Sets the value of the errorCode property.

        this.errorCode = value;
    
public synchronized voidsetErrorMsg(java.lang.String value)
Sets the value of the errorMsg property.

param
value allowed object is {@link String }

        this.errorMsg = value;
    
public synchronized voidsetRequestArgs(com.facebook.api.schema.FacebookApiException$RequestArgs value)
Sets the value of the requestArgs property.

param
value allowed object is {@link FacebookApiException.RequestArgs }

        this.requestArgs = value;