diff -r 05e692d15fcd -r ffd8b0b70511 jdk/src/share/classes/java/sql/SQLRecoverableException.java --- a/jdk/src/share/classes/java/sql/SQLRecoverableException.java Fri Mar 28 11:57:02 2014 +0100 +++ b/jdk/src/share/classes/java/sql/SQLRecoverableException.java Fri Mar 28 15:56:24 2014 +0400 @@ -32,7 +32,6 @@ * distributed transaction, the transaction branch. At a minimum, * the recovery operation must include closing the current connection and getting * a new connection. - *

* * @since 1.6 */ @@ -46,7 +45,7 @@ * The cause is not initialized, and may subsequently be * initialized by a call to the * {@link Throwable#initCause(java.lang.Throwable)} method. - *

+ * * @since 1.6 */ public SQLRecoverableException() { @@ -62,7 +61,7 @@ * The cause is not initialized, and may subsequently be * initialized by a call to the * {@link Throwable#initCause(java.lang.Throwable)} method. - *

+ * * @param reason a description of the exception * @since 1.6 */ @@ -78,7 +77,7 @@ * initialized by a call to the * {@link Throwable#initCause(java.lang.Throwable)} method. The vendor code * is initialized to 0. - *

+ * * @param reason a description of the exception * @param SQLState an XOPEN or SQL:2003 code identifying the exception * @since 1.6 @@ -95,7 +94,7 @@ * The cause is not initialized, and may subsequently be * initialized by a call to the * {@link Throwable#initCause(java.lang.Throwable)} method. - *

+ * * @param reason a description of the exception * @param SQLState an XOPEN or SQL:2003 code identifying the exception * @param vendorCode a database vendor specific exception code @@ -113,7 +112,7 @@ * The reason is initialized to null if * cause==null or to cause.toString() if * cause!=null. - *

+ * * @param 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 @@ -128,7 +127,7 @@ * reason and cause. * The SQLState is initialized to null * and the vendor code is initialized to 0. - *

+ * * @param reason a description of the exception. * @param 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. @@ -143,7 +142,7 @@ * with a given * reason, SQLState and cause. * The vendor code is initialized to 0. - *

+ * * @param reason a description of the exception. * @param SQLState an XOPEN or SQL:2003 code identifying the exception * @param cause the underlying reason for this SQLException (which is saved for later retrieval by the getCause() method); may be null indicating @@ -159,7 +158,7 @@ * with a given * reason, SQLState, vendorCode * and cause. - *

+ * * @param reason a description of the exception * @param SQLState an XOPEN or SQL:2003 code identifying the exception * @param vendorCode a database vendor-specific exception code