Class VersionNotAvailableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.tangosol.coherence.transaction.exception.VersionNotAvailableException
-
- All Implemented Interfaces:
Serializable
public class VersionNotAvailableException extends RuntimeException
Indicates that a read was attempted for a version of the data that is no longer available in storage due to garbage collection. If this exception is encountered on a regular basis the high-water setting for the storage reaper may need to be increased to allow storage to hold a greater number of versions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VersionNotAvailableException()
Default constructorVersionNotAvailableException(Throwable t)
Create a VersionNotAvailableException with a throwable.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
VersionNotAvailableException
public VersionNotAvailableException()
Default constructor
-
VersionNotAvailableException
public VersionNotAvailableException(Throwable t)
Create a VersionNotAvailableException with a throwable.- Parameters:
t
- the throwable
-
-