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

Jean-Noel Rouvignac
27.00.2015 061cfa8f64566b1a8661fd4bc2df87dfcaa41866
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);