From f2160f4bd1c8ac67e5a86a6710d431e8932877f9 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 28 May 2010 11:47:51 +0000
Subject: [PATCH] Synchronize SDK on java.net with internal repository.
---
sdk/src/org/opends/sdk/schema/SchemaException.java | 19 ++++++++-----------
1 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/sdk/src/org/opends/sdk/schema/SchemaException.java b/sdk/src/org/opends/sdk/schema/SchemaException.java
index 3accb1c..d3a7635 100644
--- a/sdk/src/org/opends/sdk/schema/SchemaException.java
+++ b/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;
--
Gitblit v1.10.0