From 061cfa8f64566b1a8661fd4bc2df87dfcaa41866 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 27 Jan 2015 17:00:39 +0000
Subject: [PATCH] OPENDJ-1716 Various PluggableBackend/Storage refactorings Code review: Nicolas Capponi

---
 opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/StorageRuntimeException.java |   26 ++++++++++++++++++++++++--
 1 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/StorageRuntimeException.java b/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/StorageRuntimeException.java
index 963b2d0..c907b50 100644
--- a/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/StorageRuntimeException.java
+++ b/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/StorageRuntimeException.java
@@ -21,25 +21,47 @@
  * CDDL HEADER END
  *
  *
- *      Copyright 2014 ForgeRock AS
+ *      Copyright 2014-2015 ForgeRock AS
  */
-
 package org.opends.server.backends.pluggable.spi;
 
+/**
+ * Runtime exception for problems happening in the storage engine.
+ */
 @SuppressWarnings("serial")
 public final class StorageRuntimeException extends RuntimeException
 {
 
+  /**
+   * Constructor with a message.
+   *
+   * @param message
+   *          the exception message
+   */
   public StorageRuntimeException(final String message)
   {
     super(message);
   }
 
+  /**
+   * Constructor with a message and a cause.
+   *
+   * @param message
+   *          the exception message
+   * @param cause
+   *          the cause of the exception
+   */
   public StorageRuntimeException(final String message, final Throwable cause)
   {
     super(message, cause);
   }
 
+  /**
+   * Constructor with a cause.
+   *
+   * @param cause
+   *          the cause of the exception
+   */
   public StorageRuntimeException(final Throwable cause)
   {
     super(cause);

--
Gitblit v1.10.0