Class RepositoryInvocationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.blyznytsiaorg.bibernate.exception.BibernateGeneralException
io.github.blyznytsiaorg.bibernate.exception.RepositoryInvocationException
- All Implemented Interfaces:
Serializable
Exception thrown to indicate an issue related to repository method invocation in a Bibernate application.
This exception is typically used when an error occurs while invoking a method in the repository layer,
and it extends the more general exception, BibernateGeneralException, which captures broader exceptions
within the Bibernate framework.
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
- See Also:
-
Constructor Summary
ConstructorDescriptionRepositoryInvocationException
(String message, Throwable cause) Constructs a new RepositoryInvocationException 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
-
RepositoryInvocationException
Constructs a new RepositoryInvocationException 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)
-