ReadOnlyStorageException.java revision 005e0af2b1779bdc5c2074c7fad78158c58cce2e
4305N/A/*
4305N/A * CDDL HEADER START
4305N/A *
4305N/A * The contents of this file are subject to the terms of the
4305N/A * Common Development and Distribution License, Version 1.0 only
4305N/A * (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* or http://forgerock.org/license/CDDLv1.0.html.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at legal-notices/CDDLv1_0.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2015 ForgeRock AS
*/
package org.opends.server.backends.pluggable.spi;
/**
* Thrown when the server or a tool attempts to access the storage while it is read-only.
*/
@SuppressWarnings("serial")
public final class ReadOnlyStorageException extends StorageRuntimeException
{
/** Constructor with default error message. */
public ReadOnlyStorageException()
{
this("This storage is read-only.");
}
/**
* Constructor with a message and a cause.
*
* @param message
* the exception message
* @param cause
* the cause of the exception
*/
public ReadOnlyStorageException(String message, Throwable cause)
{
super(message, cause);
}
/**
* Constructor with a message.
*
* @param message
* the exception message
*/
public ReadOnlyStorageException(String message)
{
super(message);
}
/**
* Constructor with a cause.
*
* @param cause
* the cause of the exception
*/
public ReadOnlyStorageException(Throwable cause)
{
super(cause);
}
}