Class ConnectionPoolException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.blyznytsiaorg.bibernate.exception.ConnectionPoolException
All Implemented Interfaces:
Serializable

public class ConnectionPoolException extends RuntimeException
Exception thrown to indicate an issue related to the connection pool in a program. This exception is typically used when there is a problem with acquiring or managing connections from a connection pool, and it extends the RuntimeException class for unchecked exception handling.
Since:
1.0
Author:
Blyzhnytsia Team
See Also:
  • Constructor Details

    • ConnectionPoolException

      public ConnectionPoolException(String message, Throwable cause)
      Constructs a new ConnectionPoolException 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)