Class PurgedReplicaDbException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opends.server.types.OpenDsException
-
- org.opends.server.replication.server.changelog.api.ChangelogException
-
- org.opends.server.replication.server.changelog.api.PurgedReplicaDbException
-
- All Implemented Interfaces:
Serializable
,LocalizableException
public final class PurgedReplicaDbException extends ChangelogException
This exception is thrown when a replica DB is fully purged by deleting all log files, invalidating all open cursors on them.Contrary to
AbortedChangelogCursorException
, an invalidated cursor does not require processing to stop, any reference to it can simply be deleted as there is no data after the data pointed to by the cursor.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PurgedReplicaDbException(Path logFile)
Creates a new exception with the provided message.
-
Method Summary
-
Methods inherited from class org.opends.server.types.OpenDsException
getMessageObject
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PurgedReplicaDbException
public PurgedReplicaDbException(Path logFile)
Creates a new exception with the provided message.- Parameters:
logFile
- the log file with the open cursor
-
-