Package com.qfs.multiversion
Class DiscardedEpochException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.activeviam.fwk.ActiveViamRuntimeException
com.activeviam.memory.DiscardedDataException
com.qfs.multiversion.DiscardedEpochException
- All Implemented Interfaces:
Serializable
The exception that is thrown when trying to access an epoch that has already been discarded.
- Author:
- ActiveViam
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.DiscardedEpochException(IEpoch epoch) Constructor at a given epoch.DiscardedEpochException(String message) Constructor without cause.DiscardedEpochException(String message, Throwable cause) Full constructor.DiscardedEpochException(Throwable cause) Constructor with a default 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
-
DiscardedEpochException
public DiscardedEpochException()Default constructor. -
DiscardedEpochException
Constructor at a given epoch.- Parameters:
epoch- the epoch that has been discarded
-
DiscardedEpochException
Constructor without cause.- Parameters:
message- the detailed message
-
DiscardedEpochException
Constructor with a default message.- Parameters:
cause- the cause
-
DiscardedEpochException
Full constructor.- Parameters:
message- the detailed messagecause- the cause
-