Class CannotGetJdbcConnectionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.NonTransientDataAccessException
org.springframework.dao.NonTransientDataAccessResourceException
org.springframework.dao.DataAccessResourceFailureException
org.springframework.jdbc.CannotGetJdbcConnectionException
All Implemented Interfaces:
Serializable

public class CannotGetJdbcConnectionException extends org.springframework.dao.DataAccessResourceFailureException
Fatal exception thrown when we can't connect to an RDBMS using JDBC.
Author:
Rod Johnson, Juergen Hoeller
See Also:
  • Constructor Details

    • CannotGetJdbcConnectionException

      public CannotGetJdbcConnectionException(String msg)
      Constructor for CannotGetJdbcConnectionException.
      Parameters:
      msg - the detail message
      Since:
      5.0
    • CannotGetJdbcConnectionException

      public CannotGetJdbcConnectionException(String msg, @Nullable SQLException ex)
      Constructor for CannotGetJdbcConnectionException.
      Parameters:
      msg - the detail message
      ex - the root cause SQLException
    • CannotGetJdbcConnectionException

      public CannotGetJdbcConnectionException(String msg, IllegalStateException ex)
      Constructor for CannotGetJdbcConnectionException.
      Parameters:
      msg - the detail message
      ex - the root cause IllegalStateException
      Since:
      5.3.22