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

matthew_swift
08.52.2009 460075839833c278f128c1482638767cdc68bfc7
opendj-sdk/sdk/src/org/opends/sdk/schema/SchemaNotFoundException.java
@@ -29,8 +29,9 @@
import com.sun.opends.sdk.util.LocalizableException;
import com.sun.opends.sdk.util.Message;
import org.opends.sdk.LocalizableException;
import org.opends.sdk.LocalizableMessage;
@@ -45,7 +46,7 @@
    LocalizableException
{
  // The I18N message associated with this exception.
  private final Message message;
  private final LocalizableMessage message;
@@ -55,7 +56,7 @@
   * @param message
   *          The message that explains the problem that occurred.
   */
  public SchemaNotFoundException(Message message)
  public SchemaNotFoundException(LocalizableMessage message)
  {
    super(String.valueOf(message));
    this.message = message;
@@ -75,7 +76,7 @@
   *          permitted, and indicates that the cause is nonexistent or
   *          unknown.
   */
  public SchemaNotFoundException(Message message, Throwable cause)
  public SchemaNotFoundException(LocalizableMessage message, Throwable cause)
  {
    super(String.valueOf(message), cause);
    this.message = message;
@@ -86,7 +87,7 @@
  /**
   * {@inheritDoc}
   */
  public Message getMessageObject()
  public LocalizableMessage getMessageObject()
  {
    return this.message;
  }