Class CommunicationStackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.aristaflow.adept2.base.communication.CommunicationStackException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
de.aristaflow.adept2.model.communication.CommunicationStackException
@Deprecated public class CommunicationStackException extends Exception
Deprecated.UseCommunicationStackException
instead. This class will be removed in the future.This exception is thrown if an exception occurs during request/response processing within a certain communication stack.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description CommunicationStackException(String message)
Deprecated.Creates a CommunicationStackException with the given description of the error that caused this exception.CommunicationStackException(String message, Throwable cause)
Deprecated.Creates a CommunicationStackException with the given error message and the reason for this exception.protected
CommunicationStackException(Throwable cause)
Deprecated.Creates aCommunicationStackException
for the designated throwable.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CommunicationStackException
public CommunicationStackException(String message, Throwable cause)
Deprecated.Creates a CommunicationStackException with the given error message and the reason for this exception.- Parameters:
message
- The error description for this exception.cause
- The reason for this exception.
-
CommunicationStackException
public CommunicationStackException(String message)
Deprecated.Creates a CommunicationStackException with the given description of the error that caused this exception.- Parameters:
message
- The error description for this exception.
-
CommunicationStackException
protected CommunicationStackException(Throwable cause)
Deprecated.Creates aCommunicationStackException
for the designated throwable. This is for wrapping an occurred exception in a corresponding subclass.- Parameters:
cause
- The wrapped cause for this exception.
-
-