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
public class UnknownEpochException extends ActiveViamRuntimeException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownEpochException()Default 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 Detail
-
UnknownEpochException
public UnknownEpochException()
Default constructor.
-
UnknownEpochException
public UnknownEpochException(String message)
Constructor.- Parameters:
message- the detailed message
-
UnknownEpochException
public UnknownEpochException(Throwable cause)
Constructor.- Parameters:
cause- the cause
-
UnknownEpochException
public UnknownEpochException(String message, Throwable cause)
Constructor.- Parameters:
message- the detailed messagecause- the cause
-
UnknownEpochException
public UnknownEpochException(String messageKey, Object... parameters)
Constructor.- Parameters:
messageKey- message templateparameters- parameters to inject into the message template
-
-