jdk/src/share/classes/java/sql/SQLTransientConnectionException.java
changeset 6528 06df0b8bf209
parent 5506 202f599c92aa
child 6531 30b5903e8301
equal deleted inserted replaced
6527:352bf578a6dd 6528:06df0b8bf209
     1 /*
     1 /*
     2  * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2005, 2006, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    25 
    25 
    26 package java.sql;
    26 package java.sql;
    27 
    27 
    28 /**
    28 /**
    29  * The subclass of {@link SQLException} for the SQLState class
    29  * The subclass of {@link SQLException} for the SQLState class
    30  * value '<i>08</i>', representing
    30  * value '<i>08</i>', or under vendor-specified conditions.  This indicates
    31  * that the connection operation that failed might be able to succeed when
    31  * that the connection operation that failed might be able to succeed if
    32  * the operation is retried without any application-level changes.
    32  * the operation is retried without any application-level changes.
    33  *<p>
    33  * <p>
    34  *
    34  * Please consult your driver vendor documentation for the vendor-specified
       
    35  * conditions for which this <code>Exception</code> may be thrown.
    35  * @since 1.6
    36  * @since 1.6
    36  */
    37  */
    37 public class SQLTransientConnectionException extends java.sql.SQLTransientException {
    38 public class SQLTransientConnectionException extends java.sql.SQLTransientException {
    38 
    39 
    39         /**
    40         /**