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 class StorageRuntimeException extends RuntimeException
Runtime exception for problems happening in the storage engine.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StorageRuntimeException(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 Detail
-
StorageRuntimeException
public StorageRuntimeException(String message)
Constructor with a message.- Parameters:
message
- the exception message
-
StorageRuntimeException
public StorageRuntimeException(String message, Throwable cause)
Constructor with a message and a cause.- Parameters:
message
- the exception messagecause
- the cause of the exception
-
StorageRuntimeException
public StorageRuntimeException(Throwable cause)
Constructor with a cause.- Parameters:
cause
- the cause of the exception
-
-