Bug 57420 - java.sql.SQLException missing new constructors
Summary: java.sql.SQLException missing new constructors
Status: ASSIGNED
Alias: None
Product: classpath
Classification: Unclassified
Component: classpath (show other bugs)
Version: unspecified
: P3 normal
Target Milestone: ---
Assignee: Andrew John Hughes
URL:
Keywords:
Depends on:
Blocks: 39410
  Show dependency treegraph
 
Reported: 2013-05-26 14:09 UTC by Andrew John Hughes
Modified: 2013-05-26 14:11 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed: 2013-05-26 00:00:00


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew John Hughes 2013-05-26 14:09:04 UTC
1. ERROR in /mnt/builder/icedtea6/openjdk-ecj/jdk/src/share/classes/java/sql/SQLNonTransientException.java (at line 121)
        super(cause);
        ^^^^^^^^^^^^^
The constructor SQLException(Throwable) is undefined
----------
2. ERROR in /mnt/builder/icedtea6/openjdk-ecj/jdk/src/share/classes/java/sql/SQLNonTransientException.java (at line 137)
        super(reason,cause);
        ^^^^^^^^^^^^^^^^^^^^
The constructor SQLException(String, Throwable) is undefined
----------
3. ERROR in /mnt/builder/icedtea6/openjdk-ecj/jdk/src/share/classes/java/sql/SQLNonTransientException.java (at line 154)
        super(reason,SQLState,cause);
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The constructor SQLException(String, String, Throwable) is undefined
----------
4. ERROR in /mnt/builder/icedtea6/openjdk-ecj/jdk/src/share/classes/java/sql/SQLNonTransientException.java (at line 171)
        super(reason,SQLState,vendorCode,cause);
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The constructor SQLException(String, String, int, Throwable) is undefined