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

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

    • BibernateGeneralException

      public BibernateGeneralException(String message)
      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

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