com.facebook
Class FacebookAuthorizationException

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.FacebookAuthorizationException
All Implemented Interfaces:
Serializable

public class FacebookAuthorizationException
extends FacebookException

An Exception indicating that a Session failed to open or obtain new permissions.

See Also:
Serialized Form

Constructor Summary
FacebookAuthorizationException()
          Constructs a FacebookAuthorizationException with no additional information.
FacebookAuthorizationException(String message)
          Constructs a FacebookAuthorizationException with a message.
FacebookAuthorizationException(String message, Throwable throwable)
          Constructs a FacebookAuthorizationException with a message and inner error.
FacebookAuthorizationException(Throwable throwable)
          Constructs a FacebookAuthorizationException 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

FacebookAuthorizationException

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


FacebookAuthorizationException

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

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

FacebookAuthorizationException

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

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

FacebookAuthorizationException

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

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