Quantum version 2.4.2
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / sql / ConnectionEstablisher.java
index 75d9363..a7ad73e 100644 (file)
@@ -1,6 +1,7 @@
 package com.quantum.sql;
 
 import java.sql.Connection;
+import java.sql.SQLException;
 
 import com.quantum.model.Bookmark;
 import com.quantum.model.ConnectionException;
@@ -14,6 +15,6 @@ public interface ConnectionEstablisher {
     public Connection connect(Bookmark bookmark, PasswordFinder passwordFinder) 
         throws ConnectionException;
     public void disconnect(Connection connection)
-        throws ConnectionException;
+        throws SQLException;
 
 }