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
deserializeObject
method in classAsciiDeserializer
.
but the deserialization fails.
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aDeserializeObjectException
with no detail message.Constructs aDeserializeObjectException
with 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 aDeserializeObjectException
with no detail message. -
DeserializeObjectException
Constructs aDeserializeObjectException
with the specified detail message.- Parameters:
s
- the detail message.
-