Class StorageInUseException
- 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.StorageInUseException
-
- All Implemented Interfaces:
Serializable
public final class StorageInUseException extends StorageRuntimeException
Runtime exception for storage supporting single access only.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StorageInUseException(String message)
Constructor with a message.StorageInUseException(String message, Throwable cause)
Constructor with a message and a cause.StorageInUseException(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
-
StorageInUseException
public StorageInUseException(String message, Throwable cause)
Constructor with a message and a cause.- Parameters:
message
- the exception messagecause
- the cause of the exception
-
StorageInUseException
public StorageInUseException(String message)
Constructor with a message.- Parameters:
message
- the exception message
-
StorageInUseException
public StorageInUseException(Throwable cause)
Constructor with a cause.- Parameters:
cause
- the cause of the exception
-
-