Class BibernateDataSourceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.blyznytsiaorg.bibernate.exception.BibernateDataSourceException
- All Implemented Interfaces:
- Serializable
Exception thrown to indicate an issue related to the data source in a Bibernate application.
 This exception is typically used when there are problems interacting with the underlying
 data source, and it extends the RuntimeException class for unchecked exception handling.
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionBibernateDataSourceException(String message, Throwable cause) Constructs a new BibernateDataSourceException with the specified detail message and cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
BibernateDataSourceExceptionConstructs a new BibernateDataSourceException 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)
 
 
-