SQLTimeoutException
SQLTimeoutException (SQL 타임아웃 예외)
Statement.setQueryTimeout, DriverManager.setLoginTimeout, DataSource.setLoginTimeout, XADataSource.setLoginTimeout가 지정한 타임아웃이 만료되었을 때 던져지는 SQLException의 하위 클래스입니다. 이 예외는 표준 SQLState에 해당하지 않습니다.
본문
SQLException을 상속하므로 다양한 생성자를 제공하며, cause를 지정하지 않는 생성자에서는 Throwable.initCause로 나중에 cause를 초기화할 수 있습니다.
public SQLTimeoutException()
public SQLTimeoutException(String reason)
public SQLTimeoutException(String reason, String SQLState)
public SQLTimeoutException(String reason, String SQLState, int vendorCode)
public SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause)