fixed a bug that reset times for datetime fields
[mir.git] / source / mir / storage / DatabaseFailure.java
index 8bff0c0..c04e476 100755 (executable)
@@ -31,31 +31,19 @@ package mir.storage;
 
 import multex.Failure;
 
-
 /**
- * Exception for all occuring failures in the database-layer
+ * Exception for all failures in the database-layer
  * @author idefix
  */
 public class DatabaseFailure extends Failure {
-  /**
-   * Constructor StorageObjectException.
-   * @param e
-   */
   public DatabaseFailure(Throwable e) {
     super("", e);
   }
 
-  /**
-   * Standard constructor
-   */
   public DatabaseFailure() {
     super("A failure occured", null);
   }
 
-  /**
-   * Construktor with message
-   * @param   String msg
-   */
   public DatabaseFailure(String msg, Throwable e) {
     super(msg, e);
   }