src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/SqlSkippedException.java
branchJDK-8188051-branch
changeset 56397 729f80d0cf31
parent 56380 f06946e00a26
child 56475 e700edfac7ad
--- a/src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/SqlSkippedException.java	Mon Apr 02 15:52:50 2018 -0400
+++ b/src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/SqlSkippedException.java	Fri Apr 06 17:01:04 2018 -0400
@@ -40,12 +40,15 @@
 
   /**
    *
-   * @param message
-   * @param cause
-   * @param sqlState
-   * @param vendorCode
-   * @param sql
-   * @param position
+   * @param message a description of the exception
+   * @param cause the underlying reason for this SqlSkippedException
+   * (which is saved for later retrieval by the getCause() method);
+   * may be null indicating the cause is non-existent or unknown.
+   * @param sqlState an XOPEN or SQL:2003 code identifying the exception
+   * @param vendorCode a database vendor-specific exception code
+   * @param sql the SQL string that was sent to the database
+   * @param position the index of the first character in SQL where an error is detected. Zero
+   * based
    */
   public SqlSkippedException(String message, Throwable cause, String sqlState, int vendorCode, String sql, int position) {
     super(message, cause, sqlState, vendorCode, sql, position);