jdk/src/share/classes/java/sql/SQLTimeoutException.java
changeset 15278 e081d3f73b75
parent 5506 202f599c92aa
child 21278 ef8a3a2a72f2
equal deleted inserted replaced
15277:245068ba31b3 15278:e081d3f73b75
     1 /*
     1 /*
     2  * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1996, 2013, 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
    24  */
    24  */
    25 
    25 
    26 package java.sql;
    26 package java.sql;
    27 
    27 
    28 /**
    28 /**
    29  * <P>The subclass of {@link SQLException} thrown when the timeout specified by <code>Statement</code>
    29  * <P>The subclass of {@link SQLException} thrown when the timeout specified by
    30  *  has expired.
    30  * {@code Statement.setQueryTimeout}, {@code DriverManager.setLoginTimeout},
       
    31  * {@code DataSource.setLoginTimeout},{@code XADataSource.setLoginTimeout}
       
    32  * has expired.
    31  * <P> This exception does not correspond to a standard SQLState.
    33  * <P> This exception does not correspond to a standard SQLState.
    32  *
    34  *
    33  * @since 1.6
    35  * @since 1.6
    34  */
    36  */
    35 
    37