Package java.sql
Class SQLNonTransientConnectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.sql.SQLException
-
- java.sql.SQLNonTransientException
-
- java.sql.SQLNonTransientConnectionException
-
- All Implemented Interfaces:
Serializable,Iterable<Throwable>
public class SQLNonTransientConnectionException extends SQLNonTransientException
An exception, which is subclass of SQLException, is thrown when the connection operation that failed will not succeed when the operation is retried without the cause of the failure being corrected.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SQLNonTransientConnectionException()Creates an SQLNonTransientConnectionException object.SQLNonTransientConnectionException(String reason)Creates an SQLNonTransientConnectionException object.SQLNonTransientConnectionException(String reason, String sqlState)Creates an SQLNonTransientConnectionException object.SQLNonTransientConnectionException(String reason, String sqlState, int vendorCode)Creates an SQLNonTransientConnectionException object.SQLNonTransientConnectionException(String reason, String sqlState, int vendorCode, Throwable cause)Creates an SQLNonTransientConnectionException object.SQLNonTransientConnectionException(String reason, String sqlState, Throwable cause)Creates an SQLNonTransientConnectionException object.SQLNonTransientConnectionException(String reason, Throwable cause)Creates an SQLNonTransientConnectionException object.SQLNonTransientConnectionException(Throwable cause)Creates an SQLNonTransientConnectionException object.
-
Method Summary
-
Methods inherited from class java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SQLNonTransientConnectionException
public SQLNonTransientConnectionException()
Creates an SQLNonTransientConnectionException object. The Reason string is set to null, the SQLState string is set to null and the Error Code is set to 0.
-
SQLNonTransientConnectionException
public SQLNonTransientConnectionException(String reason)
Creates an SQLNonTransientConnectionException object. The Reason string is set to the given reason string, the SQLState string is set to null and the Error Code is set to 0.- Parameters:
reason- the string to use as the Reason string
-
SQLNonTransientConnectionException
public SQLNonTransientConnectionException(String reason, String sqlState)
Creates an SQLNonTransientConnectionException object. The Reason string is set to the given reason string, the SQLState string is set to the given SQLState string and the Error Code is set to 0.- Parameters:
reason- the string to use as the Reason stringsqlState- the string to use as the SQLState string
-
SQLNonTransientConnectionException
public SQLNonTransientConnectionException(String reason, String sqlState, int vendorCode)
Creates an SQLNonTransientConnectionException object. The Reason string is set to the given reason string, the SQLState string is set to the given SQLState string and the Error Code is set to the given error code value.- Parameters:
reason- the string to use as the Reason stringsqlState- the string to use as the SQLState stringvendorCode- the integer value for the error code
-
SQLNonTransientConnectionException
public SQLNonTransientConnectionException(Throwable cause)
Creates an SQLNonTransientConnectionException object. The Reason string is set to the null if cause == null or cause.toString() if cause!=null,and the cause Throwable object is set to the given cause Throwable object.- Parameters:
cause- the Throwable object for the underlying reason this SQLException
-
SQLNonTransientConnectionException
public SQLNonTransientConnectionException(String reason, Throwable cause)
Creates an SQLNonTransientConnectionException object. The Reason string is set to the given and the cause Throwable object is set to the given cause Throwable object.- Parameters:
reason- the string to use as the Reason stringcause- the Throwable object for the underlying reason this SQLException
-
SQLNonTransientConnectionException
public SQLNonTransientConnectionException(String reason, String sqlState, Throwable cause)
Creates an SQLNonTransientConnectionException object. The Reason string is set to the given reason string, the SQLState string is set to the given SQLState string and the cause Throwable object is set to the given cause Throwable object.- Parameters:
reason- the string to use as the Reason stringsqlState- the string to use as the SQLState stringcause- the Throwable object for the underlying reason this SQLException
-
SQLNonTransientConnectionException
public SQLNonTransientConnectionException(String reason, String sqlState, int vendorCode, Throwable cause)
Creates an SQLNonTransientConnectionException object. The Reason string is set to the given reason string, the SQLState string is set to the given SQLState string , the Error Code is set to the given error code value, and the cause Throwable object is set to the given cause Throwable object.- Parameters:
reason- the string to use as the Reason stringsqlState- the string to use as the SQLState stringvendorCode- the integer value for the error codecause- the Throwable object for the underlying reason this SQLException
-
-