aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/sql/SQLWarning.java
blob: c2cee0ad5c6d76b6f91d5a16b8d4a6c8bb24c813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* SQLWarning.java -- Database access warnings.
   Copyright (C) 1999, 2000, 2002, 2006 Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */


package java.sql;

/**
 * This exception is thrown when a database warning occurs.
 *
 * @author Aaron M. Renn (arenn@urbanophile.com)
 */
public class SQLWarning extends SQLException
{
  static final long serialVersionUID = 3917336774604784856L;

  /**
   * This method initializes a nwe instance of <code>SQLWarning</code>
   * with the specified descriptive error message, SQL state string, and
   * vendor code.
   *
   * @param message A string describing the nature of the error.
   * @param SQLState A string containing the SQL state of the error.
   * @param vendorCode The vendor error code associated with this error.
   */
  public SQLWarning(String message, String SQLState, int vendorCode)
  {
    super(message, SQLState, vendorCode);
  }

  /**
   * This method initializes a new instance of <code>SQLWarning</code>
   * with the specified descriptive error message and SQL state string.
   * The vendor error code of this instance will be 0.
   *
   * @param message A string describing the nature of the error.
   * @param SQLState A string containing the SQL state of the error.
   */
  public SQLWarning(String message, String SQLState)
  {
    super(message, SQLState);
  }

  /**
   * This method initializes a new instance of <code>SQLWarning</code>
   * with the specified descriptive error message.  The SQL state of this
   * instance will be <code>null</code> and the vendor error code will be 0.
   *
   * @param message A string describing the nature of the error.
   */
  public SQLWarning(String message)
  {
    super(message);
  }

  /**
   * This method initializes a new instance of <code>SQLWarning</code>
   * that does not have a descriptive messages and SQL state, and which
   * has a vendor error code of 0.
   */
  public SQLWarning()
  {
    super();
  }

  /**
   * This method returns the exception that is chained to this object.
   *
   * @return The exception chained to this object, which may be
   *         <code>null</code>.
   */
  public SQLWarning getNextWarning()
  {
    return (SQLWarning) super.getNextException();
  }

  /**
   * This method adds a new exception to the end of the chain of exceptions
   * that are chained to this object.
   *
   * @param w The exception to add to the end of the chain.
   */
  public void setNextWarning(SQLWarning w)
  {
    super.setNextException(w);
  }
}
esym-values-consistent-when-demoted-to-undefined-1 Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/llvm/test
AgeCommit message (Expand)AuthorFilesLines
2025-07-14[DAG] SelectionDAG::canCreateUndefOrPoison - add ISD::FCOPYSIGN (#148617)woruyu1-6/+23
2025-07-14[GlobaISel] Allow expanding of sdiv -> mul by constant (#146504)jyli01167-269/+2282
2025-07-14[RISCV] Remove -riscv-v-vector-bits-min from LoopVectorize tests. NFC (#148565)Luke Lau14-586/+296
2025-07-14[ARM][ fp16-promote.ll - cleanup CHECKS to be consistently inside each test. ...Simon Pilgrim1-64/+62
2025-07-14[SLP,AArch64] Update build-vector test to actually build vectors.Florian Hahn1-18/+70
2025-07-14[IR] Add a test for `f128` libm libcall lowering (NFC) (#148308)Trevor Gross1-0/+337
2025-07-14[RISCV] Add ISel patterns for Xqciac QC_SHLADD instruction (#148256)Sudharsan Veeravalli1-5/+199
2025-07-14[LLVM][CodeGen] Ensure optimizeIncrementingWhile only accepts scalable vector...Paul Walker1-0/+12
2025-07-14[AArch64] Corrected Latency Descriptions for NeoverseV2 (#147339)YafetBeyene1-35/+35
2025-07-14AMDGPU: Add more baseline tests for VGPR MFMA rewrite pass (#148173)Matt Arsenault2-0/+700
2025-07-14SPARC: Add gnu run line to sincos test (#147714)Matt Arsenault1-4/+473
2025-07-14[Utils][Local] Preserve !nosanitize in combineMetadata when merging instructi...Kunqiu Chen1-8/+84
2025-07-14[Loads] Support dereferenceable assumption with variable size. (#128436)Florian Hahn4-5/+638
2025-07-14[AMDGPU][NPM] Register AMDGPUWaitSGPRHazards pass (#148106)Vikram Hegde1-3/+3
2025-07-14[DA] Add test cases where base ptr is not loop-invariant (#148240)Ryotaro Kasuga1-0/+102
2025-07-14[DebugInfo][LoopStrengthReduce] Salvage the debug value of the dead cmp instr...Shan Huang1-1/+12
2025-07-14[AVR] Simplify SPWRITE on XMEGA (#147210)Tom Vijlbrief1-0/+47
2025-07-13[AArch64] "Support" debug info for SVE types on Windows. (#147865)Eli Friedman1-0/+161
2025-07-13[NVPTX] Use PRMT more widely, and improve folding around this instruction (#1...Alex MacLean7-574/+550
2025-07-13MCAlignFragment: Rename fields and use uint8_t FillLenFangrui Song2-5/+5
2025-07-13[LV] Use more precise isPredicatedInst in legacy CCH (NFC).Florian Hahn1-0/+331
2025-07-13[AArch64][SME] Instcombine `llvm.aarch64.sme.in.streaming.mode()` (#147930)Benjamin Maxwell1-0/+48
2025-07-13[LV] Update fmax tests to include ogt/olt/ole/ugt predicates.Florian Hahn3-34/+108
2025-07-13[SPARC][IAS] Add definitions for cryptographic instructionsKoakuma2-0/+144
2025-07-13[AArch64] Add a cost for v2i32 vecreduce.add.David Green1-17/+2
2025-07-13DAG: Use fast variants of fast math libcalls (#147481)Matt Arsenault1-0/+369
2025-07-12[AArch64] Fix the emission of WinCFI for pac-ret+leaf and SCS (#147518)Anatoly Trosinenko1-276/+750
2025-07-12[mlgo] Fix test post - #147716 (#148259)JaydeepChauhan141-1/+1
2025-07-12[Test] Mark a number of libcall tests `nounwind` (#148329)Trevor Gross21-1195/+373
2025-07-11[AMDGPU] Use v_mov_b64 in codegen on gfx1250 (#148272)Stanislav Mekhanoshin3-61/+166
2025-07-11X86: Support dollar symbol for AT&T syntax and add output-asm-variant to llcFangrui Song2-12/+74
2025-07-12[coro] Fix crash due to DILabel in `LineTableOnly` mode (#148095)Adrian Vogelsgesang1-2/+13
2025-07-11AMDGPU: Implement s_wait_asynccnt and s_wait_tensorcnt for gfx1250 (#148292)Changpeng Fang3-0/+59
2025-07-11[Hexagon] Add saturating add instructions (#148132)aankit-ca1-0/+157
2025-07-11[AMDGPU] MC support for v_fmaak_f64/v_fmamk_f64 gfx1250 intructions (#148282)Stanislav Mekhanoshin4-0/+334
2025-07-11AMDGPU: Remove "gds" feature from generic targets (#148269)Changpeng Fang3-5/+0
2025-07-11[DirectX] Legalize lifetime intrinsics for DXIL (#148003)Deric C.3-0/+99
2025-07-11[SLP]Remove emission of vector_insert/vector_extract intrinsicsAlexey Bataev93-723/+743
2025-07-11 [NVPTX] support f32x2 instructions for sm_100+ (#126337)Princeton Ferro20-1012/+3306
2025-07-11[MemProf] Don't mutate the function type when calling clone (#147829)Teresa Johnson1-0/+62
2025-07-11[CodeGen] Do not use subsituteRegister to update implicit def (#148068)Peiming Liu1-0/+21
2025-07-12[RISCV] Handle implicit defs when ensuring pseudo dominates in peephole (#148...Luke Lau1-0/+39
2025-07-11[AArch64] Scalarize v2f16 vecreduce.fadd (#147783)David Green1-3/+0
2025-07-11[AMDGPU] Negative gfx1250 v_dual_cndmask_b32 tests. NFC. (#148057)Stanislav Mekhanoshin1-0/+25
2025-07-11[AMDGPU] Autogenerate gfx1250 vopd tests. NFC. (#147918)Stanislav Mekhanoshin2-8832/+8834
2025-07-11[RISCV] Add BREV8 and ORC_B to hasAllNBitUsers in RISCVOptWInstrs. (#148076)Craig Topper1-2/+185
2025-07-11Add debuginfo C support for a SetType, Subrangetype, dynamic array type and ...peter mckinna1-28/+42
2025-07-11[X86][GlobalISel] Added support for llvm.get.rounding (#147716)JaydeepChauhan145-137/+315
2025-07-11[LV] Add a statistic for early exit vectorizationAnna Thomas1-6/+38
2025-07-11Revert "[RISCV] AddEdge between mask producer and user of V0 (#146855)"Alex Bradbury6-171/+189