home *** CD-ROM | disk | FTP | other *** search
- package symantec.itools.db.net;
-
- import symjava.sql.SQLException;
-
- public class SQLConnectionException extends SQLException {
- public SQLConnectionException(String reason, String SQLState, int vendorCode) {
- super(reason, SQLState, vendorCode);
- }
-
- public SQLConnectionException(String reason, String SQLState) {
- super(reason, SQLState);
- }
-
- public SQLConnectionException(String reason) {
- super(reason);
- }
-
- public SQLConnectionException() {
- }
- }
-