SQLClientInfoException
public SQLClientInfoException(java.lang.String reason,
java.lang.String SQLState,
int vendorCode,
java.util.Map<java.lang.String,ClientInfoStatus> failedProperties,
java.lang.Throwable cause)
- Constructs a
SQLClientInfoException object initialized with a given reason , SQLState , cause , vendorCode and failedProperties .
-
Parameters:
-
reason - a description of the exception
-
SQLState - an XOPEN or SQL:2003 code identifying the exception
-
vendorCode - a database vendor-specific exception code
-
failedProperties - A Map containing the property values that could not be set. The keys in the Map contain the names of the client info properties that could not be set and the values contain one of the reason codes defined in ClientInfoStatus
-
cause - the underlying reason for this SQLException (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown.
-
Since:
- 1.6
|