Class ReadOnlyStorageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.opends.server.backends.pluggable.spi.StorageRuntimeException
-
- org.opends.server.backends.pluggable.spi.ReadOnlyStorageException
-
- All Implemented Interfaces:
Serializable
public final class ReadOnlyStorageException extends StorageRuntimeException
Thrown when the server or a tool attempts to access the storage while it is read-only.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReadOnlyStorageException()
Constructor with default error message.ReadOnlyStorageException(String message)
Constructor with a message.ReadOnlyStorageException(String message, Throwable cause)
Constructor with a message and a cause.ReadOnlyStorageException(Throwable cause)
Constructor with a cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ReadOnlyStorageException
public ReadOnlyStorageException()
Constructor with default error message.
-
ReadOnlyStorageException
public ReadOnlyStorageException(String message, Throwable cause)
Constructor with a message and a cause.- Parameters:
message
- the exception messagecause
- the cause of the exception
-
ReadOnlyStorageException
public ReadOnlyStorageException(String message)
Constructor with a message.- Parameters:
message
- the exception message
-
ReadOnlyStorageException
public ReadOnlyStorageException(Throwable cause)
Constructor with a cause.- Parameters:
cause
- the cause of the exception
-
-