Class RepositoryInvocationException

All Implemented Interfaces:
Serializable

public class RepositoryInvocationException extends BibernateGeneralException
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 Details

    • RepositoryInvocationException

      public RepositoryInvocationException(String message, Throwable cause)
      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)