Package org.jivesoftware.smack
Class SmackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.jivesoftware.smack.SmackException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
FileTransferException,IoTException,MultiUserChatException,PubSubException,SmackException.AlreadyConnectedException,SmackException.AlreadyLoggedInException,SmackException.ConnectionException,SmackException.FeatureNotSupportedException,SmackException.IllegalStateChangeException,SmackException.NoResponseException,SmackException.NotConnectedException,SmackException.NotLoggedInException,SmackException.ResourceBindingNotOfferedException,SmackException.SecurityNotPossibleException,SmackException.SecurityRequiredException,SmackException.SmackCertificateException,SmackException.SmackMessageException,SmackException.SmackSaslException,SmackException.SmackWrappedException,Socks5Exception,StateMachineException,StreamManagementException
public abstract class SmackException extends java.lang.Exception
Smack uses SmackExceptions for errors that are not defined by any XMPP specification.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Constructor Summary
Constructors Modifier Constructor Description protectedSmackException()protectedSmackException(java.lang.String message)protectedSmackException(java.lang.String message, java.lang.Throwable wrappedThrowable)protectedSmackException(java.lang.Throwable wrappedThrowable)Creates a new SmackException with the Throwable that was the root cause of the exception.
-
-
-
Constructor Detail
-
SmackException
protected SmackException(java.lang.Throwable wrappedThrowable)
Creates a new SmackException with the Throwable that was the root cause of the exception.- Parameters:
wrappedThrowable- the root cause of the exception.
-
SmackException
protected SmackException(java.lang.String message)
-
SmackException
protected SmackException(java.lang.String message, java.lang.Throwable wrappedThrowable)
-
SmackException
protected SmackException()
-
-