Class StorageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opends.server.backends.pluggable.spi.StorageException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
LookThroughLimitExceededException, ReadOnlyStorageException
public sealed class StorageException
extends Exception
permits ReadOnlyStorageException, LookThroughLimitExceededException
Runtime exception for problems happening in the storage engine.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStorageException(String message) Constructor with a message.StorageException(String message, Throwable cause) Constructor with a message and a cause.StorageException(Throwable cause) Constructor with a cause.StorageException(LocalizableMessage message) Constructor with a message.StorageException(LocalizableMessage message, Throwable cause) Constructor with a message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
StorageException
Constructor with a message.- Parameters:
message- the exception message
-
StorageException
Constructor with a message.- Parameters:
message- the exception messagecause- the cause of the exception
-
StorageException
Constructor with a message.- Parameters:
message- the exception message
-
StorageException
-
StorageException
Constructor with a cause.- Parameters:
cause- the cause of the exception
-