Package com.qfs.multiversion
Class UnknownEpochException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.activeviam.fwk.ActiveViamRuntimeException
com.qfs.multiversion.UnknownEpochException
- All Implemented Interfaces:
Serializable
Runtime exception thrown when a reader requires a version at an epoch in the past and that
version has already been abandoned by the multiversion holder.
- Author:
- ActiveViam
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.UnknownEpochException(String message) Constructor.UnknownEpochException(String messageKey, Object... parameters) Constructor.UnknownEpochException(String message, Throwable cause) Constructor.UnknownEpochException(Throwable cause) Constructor.UnknownEpochException(Throwable exception, String messageKey, Object... parameters) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownEpochException
public UnknownEpochException()Default constructor. -
UnknownEpochException
Constructor.- Parameters:
message- the detailed message
-
UnknownEpochException
Constructor.- Parameters:
cause- the cause
-
UnknownEpochException
Constructor.- Parameters:
message- the detailed messagecause- the cause
-
UnknownEpochException
Constructor.- Parameters:
messageKey- message templateparameters- parameters to inject into the message template
-
UnknownEpochException
Constructor.- Parameters:
exception- the causemessageKey- message templateparameters- parameters to inject into the message template
-