java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.lmdbjava.LmdbException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ByteBufferProxy.BufferMustBeDirectException,Cursor.ClosedException,Env.AlreadyClosedException,Env.AlreadyOpenException,Env.InvalidCopyDestination,LmdbNativeException,Txn.EnvIsReadOnly,Txn.IncompatibleParent,Txn.NotReadyException,Txn.NotResetException,Txn.ReadOnlyRequiredException,Txn.ReadWriteRequiredException,Txn.ResetException
Superclass for all LmdbJava custom exceptions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLmdbException(String message) Constructs an instance with the provided detailed message.LmdbException(String message, Throwable cause) Constructs an instance with the provided detailed message and 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
-
LmdbException
Constructs an instance with the provided detailed message.- Parameters:
message- the detail message
-
LmdbException
Constructs an instance with the provided detailed message and cause.- Parameters:
message- the detail messagecause- original cause
-