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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/schema/UnknownSchemaElementException.java
@@ -29,28 +29,26 @@
import org.opends.sdk.LocalizedIllegalArgumentException;
import org.opends.sdk.LocalizableMessage;
import org.opends.sdk.LocalizedIllegalArgumentException;
/**
 * Thrown when a schema query fails because the requested schema element
 * could not be found or is ambiguous.
 * Thrown when a schema query fails because the requested schema element could
 * not be found or is ambiguous.
 */
@SuppressWarnings("serial")
public class UnknownSchemaElementException extends
    LocalizedIllegalArgumentException
{
  /**
   * Creates a new unknown schema element exception with the provided
   * message.
   *
   * Creates a new unknown schema element exception with the provided message.
   *
   * @param message
   *          The message that explains the problem that occurred.
   */
  public UnknownSchemaElementException(LocalizableMessage message)
  public UnknownSchemaElementException(final LocalizableMessage message)
  {
    super(message);
  }