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
public class DiscardedEpochException extends DiscardedDataException
The exception that is thrown when trying to access an epoch that has already been discarded.- Author:
- ActiveViam
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DiscardedEpochException()Default 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 Detail
-
DiscardedEpochException
public DiscardedEpochException()
Default constructor.
-
DiscardedEpochException
public DiscardedEpochException(IEpoch epoch)
Constructor at a given epoch.- Parameters:
epoch- the epoch that has been discarded
-
DiscardedEpochException
public DiscardedEpochException(String message)
Constructor without cause.- Parameters:
message- the detailed message
-
DiscardedEpochException
public DiscardedEpochException(Throwable cause)
Constructor with a default message.- Parameters:
cause- the cause
-
-