Class DataSerializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.communication.exception.CommunicationEngineException
-
- com.aquima.interactions.communication.exception.DataSerializationException
-
- All Implemented Interfaces:
Serializable
public class DataSerializationException extends CommunicationEngineException
Exception for reporting errors during serialization / deserialization of Data Objects- Since:
- 9.3
- Author:
- A.Pragt
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ACTION_DESERIALIZE
static String
ACTION_SERIALIZE
-
Constructor Summary
Constructors Constructor Description DataSerializationException(String message, String action)
DataSerializationException(String message, String action, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAction()
Gets the action that was performed when this exception occurred.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
ACTION_SERIALIZE
public static final String ACTION_SERIALIZE
- See Also:
- Constant Field Values
-
ACTION_DESERIALIZE
public static final String ACTION_DESERIALIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAction
public String getAction()
Gets the action that was performed when this exception occurred.- Returns:
- String representing the action, either
ACTION_SERIALIZE
orACTION_DESERIALIZE
.
-
-