From 71ebb3724c79a7d1218c36f080acd6ee162b9cd2 Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Thu, 26 Apr 2007 06:31:01 +0000
Subject: [PATCH] Rename the class with names containing synchronization or changelog. Replace most of the changelog occurences with replication server. (issue 1090)
---
opends/src/server/org/opends/server/replication/server/ReplicationDBException.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/server/ChangelogDBException.java b/opends/src/server/org/opends/server/replication/server/ReplicationDBException.java
similarity index 81%
rename from opends/src/server/org/opends/server/replication/server/ChangelogDBException.java
rename to opends/src/server/org/opends/server/replication/server/ReplicationDBException.java
index af853af..35a7461 100644
--- a/opends/src/server/org/opends/server/replication/server/ChangelogDBException.java
+++ b/opends/src/server/org/opends/server/replication/server/ReplicationDBException.java
@@ -34,24 +34,24 @@
/**
* 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);
--
Gitblit v1.10.0