Class ChangelogException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opends.server.types.OpenDsException
org.opends.server.replication.server.changelog.api.ChangelogException
- All Implemented Interfaces:
Serializable
,LocalizableException
- Direct Known Subclasses:
AbortedChangelogCursorException
,PurgedReplicaDbException
This class define an Exception that must be used when some error condition was detected in the changelog database
that cannot be recovered automatically.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionChangelogException
(Throwable cause) Creates a new changelog exception with the provided information.ChangelogException
(LocalizableMessage message) Creates a new changelog exception with the provided information.ChangelogException
(LocalizableMessage message, Throwable cause) Creates a new identified exception with the provided information. -
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 Details
-
ChangelogException
Creates a new changelog exception with the provided information.- Parameters:
message
- The message that explains the problem that occurred.
-
ChangelogException
Creates a new changelog exception with the provided information.- Parameters:
cause
- The underlying cause that triggered this exception.
-
ChangelogException
Creates a new identified exception with the provided information.- Parameters:
message
- The message that explains the problem that occurred.cause
- The underlying cause that triggered this exception.
-