first cut of merge of STABLE-pre1_0 into HEAD. I won't even guarantee that it
[mir.git] / source / mir / storage / StorageObject.java
index 1677903..d489d2d 100755 (executable)
@@ -204,7 +204,8 @@ public interface StorageObject {
         * @param con
         * @param stmt
         */
-               abstract public void freeConnection(Connection con,  Statement stmt);
+               abstract public void freeConnection(Connection con,  Statement stmt)
+            throws StorageObjectException;
 
 
 
@@ -212,7 +213,7 @@ public interface StorageObject {
         * Dokumentation siehe Database.java
         * @return
         */
-       abstract public SimpleList getPopupData ();
+       abstract public SimpleList getPopupData () throws StorageObjectException;
 
        abstract public int executeUpdate(Statement a, String sql) throws StorageObjectException, SQLException ;
        abstract public int executeUpdate(String sql) throws StorageObjectException, SQLException ;