mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

gbellato
26.31.2007 98a5896dca14ea8ac850d94ebd46713da552601d
opendj-sdk/opends/src/server/org/opends/server/replication/server/ReplicationDBException.java
File was renamed from opendj-sdk/opends/src/server/org/opends/server/replication/server/ChangelogDBException.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);