Package com.helixframework.delta
Class DeltaApplyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.helixframework.delta.DeltaApplyException
- All Implemented Interfaces:
Serializable
Thrown when a previously computed delta cannot be replayed onto an input document.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeltaApplyException(String message) Creates an exception with a message describing the replay failure.DeltaApplyException(String message, Throwable cause) Creates an exception with a message and the underlying cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DeltaApplyException
Creates an exception with a message describing the replay failure.- Parameters:
message- failure description
-
DeltaApplyException
Creates an exception with a message and the underlying cause.- Parameters:
message- failure descriptioncause- root cause
-