src/java.sql/share/classes/java/sql/SQLDataException.java
author weijun
Tue, 21 May 2019 08:37:30 +0800
changeset 58618 a95e1f6757c7
parent 47216 71c04702a3d5
permissions -rw-r--r--
8224025: Fix for JDK-8220302 is not complete Reviewed-by: ahgross, mullan, valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
6531
30b5903e8301 6982510: Updated SQLException subclasses from the outback for 6861385 so that the copyrights only have 2 years
lancea
parents: 6528
diff changeset
     2
 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.sql;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
6528
06df0b8bf209 6861385: Updated SQLException subclasses to clarify that they may be thrown for vendor specific conditions
lancea
parents: 5506
diff changeset
    29
 * The subclass of {@link SQLException} thrown when the SQLState class value
06df0b8bf209 6861385: Updated SQLException subclasses to clarify that they may be thrown for vendor specific conditions
lancea
parents: 5506
diff changeset
    30
 * is '<i>22</i>', or under vendor-specified conditions.  This indicates
06df0b8bf209 6861385: Updated SQLException subclasses to clarify that they may be thrown for vendor specific conditions
lancea
parents: 5506
diff changeset
    31
 * various data errors, including but not limited to data conversion errors,
06df0b8bf209 6861385: Updated SQLException subclasses to clarify that they may be thrown for vendor specific conditions
lancea
parents: 5506
diff changeset
    32
 * division by 0, and invalid arguments to functions.
06df0b8bf209 6861385: Updated SQLException subclasses to clarify that they may be thrown for vendor specific conditions
lancea
parents: 5506
diff changeset
    33
 * <p>
06df0b8bf209 6861385: Updated SQLException subclasses to clarify that they may be thrown for vendor specific conditions
lancea
parents: 5506
diff changeset
    34
 * Please consult your driver vendor documentation for the vendor-specified
06df0b8bf209 6861385: Updated SQLException subclasses to clarify that they may be thrown for vendor specific conditions
lancea
parents: 5506
diff changeset
    35
 * conditions for which this <code>Exception</code> may be thrown.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
public class SQLDataException extends SQLNonTransientException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
         * Constructs a <code>SQLDataException</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
         * The <code>reason</code>, <code>SQLState</code> are initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
         * to <code>null</code> and the vendor code is initialized to 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
         * The <code>cause</code> is not initialized, and may subsequently be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
         * initialized by a call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
         * {@link Throwable#initCause(java.lang.Throwable)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
         * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        public SQLDataException() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
                 super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
         * Constructs a <code>SQLDataException</code> object with a given
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
         * <code>reason</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
         * The <code>SQLState</code> is initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
         * to <code>null</code> and the vendor code is initialized to 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
         * The <code>cause</code> is not initialized, and may subsequently be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
         * initialized by a call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
         * {@link Throwable#initCause(java.lang.Throwable)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
         * @param reason a description of the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
         * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        public SQLDataException(String reason) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                super(reason);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
         * Constructs a <code>SQLDataException</code> object with a given
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
         * <code>reason</code> and <code>SQLState</code>. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
         * vendor code is initialized to 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
         * The <code>cause</code> is not initialized, and may subsequently be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
         * initialized by a call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
         * {@link Throwable#initCause(java.lang.Throwable)} method.
23590
ffd8b0b70511 8038493: Tidy warnings cleanup for java.sql
yan
parents: 6531
diff changeset
    80
         *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
         * @param reason a description of the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
         * @param SQLState an XOPEN or SQL:2003 code identifying the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
         * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        public SQLDataException(String reason, String SQLState) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                super(reason, SQLState);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
         * Constructs a <code>SQLDataException</code> object with a given
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
         * <code>reason</code>, <code>SQLState</code>  and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
         * <code>vendorCode</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
         * The <code>cause</code> is not initialized, and may subsequently be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
         * initialized by a call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
         * {@link Throwable#initCause(java.lang.Throwable)} method.
23590
ffd8b0b70511 8038493: Tidy warnings cleanup for java.sql
yan
parents: 6531
diff changeset
    97
         *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
         * @param reason a description of the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
         * @param SQLState an XOPEN or SQL:2003 code identifying the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
         * @param vendorCode a database vendor specific exception code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
         * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        public SQLDataException(String reason, String SQLState, int vendorCode) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                 super(reason, SQLState, vendorCode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Constructs a <code>SQLDataException</code> object with a given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * <code>cause</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * The <code>SQLState</code> is initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * to <code>null</code> and the vendor code is initialized to 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * The <code>reason</code>  is initialized to <code>null</code> if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * <code>cause==null</code> or to <code>cause.toString()</code> if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * <code>cause!=null</code>.
23590
ffd8b0b70511 8038493: Tidy warnings cleanup for java.sql
yan
parents: 6531
diff changeset
   115
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     *     the cause is non-existent or unknown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    public SQLDataException(Throwable cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        super(cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * Constructs a <code>SQLDataException</code> object with a given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * <code>reason</code> and  <code>cause</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * The <code>SQLState</code> is  initialized to <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * and the vendor code is initialized to 0.
23590
ffd8b0b70511 8038493: Tidy warnings cleanup for java.sql
yan
parents: 6531
diff changeset
   129
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * @param reason a description of the exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     *     the cause is non-existent or unknown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    public SQLDataException(String reason, Throwable cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
         super(reason, cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *  Constructs a <code>SQLDataException</code> object with a given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * <code>reason</code>, <code>SQLState</code> and  <code>cause</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * The vendor code is initialized to 0.
23590
ffd8b0b70511 8038493: Tidy warnings cleanup for java.sql
yan
parents: 6531
diff changeset
   143
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @param reason a description of the exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @param SQLState an XOPEN or SQL:2003 code identifying the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *     the cause is non-existent or unknown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    public SQLDataException(String reason, String SQLState, Throwable cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        super(reason, SQLState, cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * Constructs a <code>SQLDataException</code> object with a given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * and  <code>cause</code>.
23590
ffd8b0b70511 8038493: Tidy warnings cleanup for java.sql
yan
parents: 6531
diff changeset
   158
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @param reason a description of the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @param SQLState an XOPEN or SQL:2003 code identifying the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @param vendorCode a database vendor-specific exception code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *     the cause is non-existent or unknown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    public SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
          super(reason, SQLState, vendorCode, cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
   private static final long serialVersionUID = -6889123282670549800L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
}