Package hec.lang
Class DeserializeObjectException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
hec.lang.DeserializeObjectException
- All Implemented Interfaces:
Serializable
Thrown when an application tries to load in a class through the
AsciiDeserialzier using:
- The
deserializeObjectmethod in classAsciiDeserializer.
but the deserialization fails.
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aDeserializeObjectExceptionwith no detail message.Constructs aDeserializeObjectExceptionwith the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DeserializeObjectException
public DeserializeObjectException()Constructs aDeserializeObjectExceptionwith no detail message. -
DeserializeObjectException
Constructs aDeserializeObjectExceptionwith the specified detail message.- Parameters:
s- the detail message.
-