Class BibernateGeneralException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.blyznytsiaorg.bibernate.exception.BibernateGeneralException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ClassLimitationCreationException
,CollectionIsEmptyException
,EntityStateWasChangeException
,ImmutableEntityException
,MissingRequiredParametersInMethod
,NotFoundImplementationForCustomRepository
,RepositoryInvocationException
,UnsupportedActionTypeException
,UnsupportedReturnTypeException
The base exception class for handling general runtime exceptions within a Bibernate application.
This exception is typically used to wrap and propagate various runtime issues that may occur
during the execution of Bibernate-related operations.
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBibernateGeneralException
(String message) Constructs a new BibernateGeneralException with the specified detail message.BibernateGeneralException
(String message, Throwable cause) Constructs a new BibernateGeneralException with the specified detail 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
-
BibernateGeneralException
Constructs a new BibernateGeneralException with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by the getMessage() method)
-
BibernateGeneralException
Constructs a new BibernateGeneralException with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by the getMessage() method)cause
- the cause (which is saved for later retrieval by the getCause() method)
-