OSDN Git Service

libjava/
[pf3gnuchains/gcc-fork.git] / libjava / java / sql / SQLException.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __java_sql_SQLException__
5 #define __java_sql_SQLException__
6
7 #pragma interface
8
9 #include <java/lang/Exception.h>
10 extern "Java"
11 {
12   namespace java
13   {
14     namespace sql
15     {
16         class SQLException;
17     }
18   }
19 }
20
21 class java::sql::SQLException : public ::java::lang::Exception
22 {
23
24 public:
25   SQLException(::java::lang::String *, ::java::lang::String *, jint);
26   SQLException(::java::lang::String *, ::java::lang::String *);
27   SQLException(::java::lang::String *);
28   SQLException();
29   virtual ::java::lang::String * getSQLState();
30   virtual jint getErrorCode();
31   virtual ::java::sql::SQLException * getNextException();
32   virtual void setNextException(::java::sql::SQLException *);
33 public: // actually package-private
34   static const jlong serialVersionUID = 2135244094396331484LL;
35 private:
36   ::java::sql::SQLException * __attribute__((aligned(__alignof__( ::java::lang::Exception)))) next;
37   ::java::lang::String * SQLState;
38   jint vendorCode;
39 public:
40   static ::java::lang::Class class$;
41 };
42
43 #endif // __java_sql_SQLException__