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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/schema/ConflictingSchemaElementException.java
@@ -29,30 +29,28 @@
import org.opends.sdk.LocalizedIllegalArgumentException;
import org.opends.sdk.LocalizableMessage;
import org.opends.sdk.LocalizedIllegalArgumentException;
/**
 * Thrown when addition of a schema element to a schema builder fails
 * because the OID of the schema element conflicts with an existing
 * schema element and the caller explicitly requested not to override
 * existing schema elements.
 * Thrown when addition of a schema element to a schema builder fails because
 * the OID of the schema element conflicts with an existing schema element and
 * the caller explicitly requested not to override existing schema elements.
 */
@SuppressWarnings("serial")
public class ConflictingSchemaElementException extends
    LocalizedIllegalArgumentException
{
  /**
   * Creates a new conflicting schema element exception with the
   * provided message.
   *
   * Creates a new conflicting schema element exception with the provided
   * message.
   *
   * @param message
   *          The message that explains the problem that occurred.
   */
  public ConflictingSchemaElementException(LocalizableMessage message)
  public ConflictingSchemaElementException(final LocalizableMessage message)
  {
    super(message);
  }