Package akka.remote.serialization
Class ThrowableNotSerializableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- akka.remote.serialization.ThrowableNotSerializableException
-
- All Implemented Interfaces:
java.io.Serializable
public final class ThrowableNotSerializableException extends java.lang.IllegalArgumentException
Use as replacement for an original exception when it can't be serialized or deserialized. param: originalMessage the message of the original exception param: originalClassName the class name of the original exception param: cause exception that caused deserialization error, optional and will not be serialized- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ThrowableNotSerializableException(java.lang.String originalMessage, java.lang.String originalClassName)
ThrowableNotSerializableException(java.lang.String originalMessage, java.lang.String originalClassName, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
originalClassName()
java.lang.String
originalMessage()
-
-
-
Constructor Detail
-
ThrowableNotSerializableException
public ThrowableNotSerializableException(java.lang.String originalMessage, java.lang.String originalClassName, java.lang.Throwable cause)
-
ThrowableNotSerializableException
public ThrowableNotSerializableException(java.lang.String originalMessage, java.lang.String originalClassName)
-
-