Started with the separated DB with the given code
[RRRRHHHH_Code] / ruralHousesDB / src / exceptions / DB4oManagerCreationException.java
diff --git a/ruralHousesDB/src/exceptions/DB4oManagerCreationException.java b/ruralHousesDB/src/exceptions/DB4oManagerCreationException.java
new file mode 100644 (file)
index 0000000..4b49471
--- /dev/null
@@ -0,0 +1,17 @@
+package exceptions;
+public class DB4oManagerCreationException extends Exception {
+ private static final long serialVersionUID = 1L;
+ public DB4oManagerCreationException()
+  {
+    super();
+  }
+  /**This exception is triggered if there is a problem when constructor of DB4oManager is executed
+  *@param String
+  *@return None
+  */
+  public DB4oManagerCreationException(String s)
+  {
+    super(s);
+  }
+}
\ No newline at end of file