proper handling of exceptions all around. especially for the media stuff.
[mir.git] / source / mircoders / storage / DatabaseContent.java
index 72286ff..5a76432 100755 (executable)
@@ -55,7 +55,7 @@ public class DatabaseContent extends Database implements StorageObject {
    * sets the database flag is_produced to unproduced
    */
 
-  public void setUnproduced(String where)
+  public void setUnproduced(String where) throws StorageObjectException
   {
     Connection con=null;Statement stmt=null;
     String sql = "update content set is_produced='0' where " + where;