| File was renamed from opendj-sdk/opends/src/server/org/opends/server/replication/server/ChangelogDBException.java |
| | |
| | | |
| | | /** |
| | | * This class define an Exception that must be used when some error |
| | | * condition was detected in the changelog database that cannot be recovered |
| | | * automatically. |
| | | * condition was detected in the replicationServer database that cannot be |
| | | * recovered automatically. |
| | | */ |
| | | public class ChangelogDBException extends IdentifiedException |
| | | public class ReplicationDBException extends IdentifiedException |
| | | { |
| | | private int messageID; |
| | | |
| | | private static final long serialVersionUID = -8812600147768060090L; |
| | | |
| | | /** |
| | | * Creates a new Changelog db exception with the provided message. |
| | | * This Exception must be used when the full changelog service is |
| | | * Creates a new ReplicationServer db exception with the provided message. |
| | | * This Exception must be used when the full replicationServer service is |
| | | * compromised by the exception |
| | | * |
| | | * @param messageID The unique message ID for the provided message. |
| | | * @param message The message to use for this exception. |
| | | */ |
| | | public ChangelogDBException(int messageID, String message) |
| | | public ReplicationDBException(int messageID, String message) |
| | | { |
| | | super(message); |
| | | |