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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/schema/SchemaException.java
@@ -34,13 +34,11 @@
/**
 * Thrown when a schema could not be decoded or validated.
 */
@SuppressWarnings("serial")
final class SchemaException extends Exception implements
    LocalizableException
final class SchemaException extends Exception implements LocalizableException
{
  // The I18N message associated with this exception.
  private final LocalizableMessage message;
@@ -49,11 +47,11 @@
  /**
   * Creates a new schema exception with the provided message.
   *
   *
   * @param message
   *          The message that explains the problem that occurred.
   */
  public SchemaException(LocalizableMessage message)
  public SchemaException(final LocalizableMessage message)
  {
    super(String.valueOf(message));
    this.message = message;
@@ -63,16 +61,15 @@
  /**
   * Creates a new schema exception with the provided message and cause.
   *
   *
   * @param message
   *          The message that explains the problem that occurred.
   * @param cause
   *          The cause which may be later retrieved by the
   *          {@link #getCause} method. A {@code null} value is
   *          permitted, and indicates that the cause is nonexistent or
   *          unknown.
   *          The cause which may be later retrieved by the {@link #getCause}
   *          method. A {@code null} value is permitted, and indicates that the
   *          cause is nonexistent or unknown.
   */
  public SchemaException(LocalizableMessage message, Throwable cause)
  public SchemaException(final LocalizableMessage message, final Throwable cause)
  {
    super(String.valueOf(message), cause);
    this.message = message;