Package com.deltaxml.core.exceptions
Class SerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.deltaxml.core.exceptions.DeltaXMLException
com.deltaxml.core.exceptions.SerializationException
- All Implemented Interfaces:
Serializable
Indicates a problem with writing the comparison result.
Compare methods that produce a serialized result can throw this Exception if there is an error in writing that result.
See the underlying cause for more details.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSerializationException(String message) Constructs a new SerializationException.SerializationException(String message, Throwable cause) Constructs a new SerializationException. -
Method Summary
Methods inherited from class com.deltaxml.core.exceptions.DeltaXMLException
getCause, getThrowableMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SerializationException
Constructs a new SerializationException.- Parameters:
message- the exception message
-
SerializationException
Constructs a new SerializationException.- Parameters:
message- the exception messagecause- the underlying cause of this Exception
-