com.facebook
Class FacebookOperationCanceledException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.facebook.FacebookException
                  extended by com.facebook.FacebookOperationCanceledException
All Implemented Interfaces:
Serializable

public class FacebookOperationCanceledException
extends FacebookException

An Exception indicating that an operation was canceled before it completed.

See Also:
Serialized Form

Constructor Summary
FacebookOperationCanceledException()
          Constructs a FacebookOperationCanceledException with no additional information.
FacebookOperationCanceledException(String message)
          Constructs a FacebookOperationCanceledException with a message.
FacebookOperationCanceledException(String message, Throwable throwable)
          Constructs a FacebookOperationCanceledException with a message and inner error.
FacebookOperationCanceledException(Throwable throwable)
          Constructs a FacebookOperationCanceledException with an inner error.
 
Method Summary
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FacebookOperationCanceledException

public FacebookOperationCanceledException()
Constructs a FacebookOperationCanceledException with no additional information.


FacebookOperationCanceledException

public FacebookOperationCanceledException(String message)
Constructs a FacebookOperationCanceledException with a message.

Parameters:
message - A String to be returned from getMessage.

FacebookOperationCanceledException

public FacebookOperationCanceledException(String message,
                                          Throwable throwable)
Constructs a FacebookOperationCanceledException with a message and inner error.

Parameters:
message - A String to be returned from getMessage.
throwable - A Throwable to be returned from getCause.

FacebookOperationCanceledException

public FacebookOperationCanceledException(Throwable throwable)
Constructs a FacebookOperationCanceledException with an inner error.

Parameters:
throwable - A Throwable to be returned from getCause.