Class StorageRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.opends.server.backends.pluggable.spi.StorageRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ReadOnlyStorageException
public sealed class StorageRuntimeException
extends RuntimeException
permits ReadOnlyStorageException
Runtime exception for problems happening in the storage engine.
- See Also:
-
Constructor Summary
ConstructorDescriptionStorageRuntimeException
(String message) Constructor with a message.StorageRuntimeException
(String message, Throwable cause) Constructor with a message and a cause.StorageRuntimeException
(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 Details
-
StorageRuntimeException
Constructor with a message.- Parameters:
message
- the exception message
-
StorageRuntimeException
Constructor with a message and a cause.- Parameters:
message
- the exception messagecause
- the cause of the exception
-
StorageRuntimeException
Constructor with a cause.- Parameters:
cause
- the cause of the exception
-