Class BibernateSessionClosedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.blyznytsiaorg.bibernate.exception.BibernateSessionClosedException
- All Implemented Interfaces:
Serializable
Exception thrown to indicate an attempt to perform an operation on a closed session
in a Bibernate application. This exception is typically used when an operation requires
an open session, but the session is already closed.
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
- See Also:
-
Constructor Summary
ConstructorDescriptionBibernateSessionClosedException
(String message) Constructs a new BibernateSessionClosedException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BibernateSessionClosedException
Constructs a new BibernateSessionClosedException with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by the getMessage() method)
-