Separate DB almost fixed
[RRRRHHHH_Code] / ruralHousesDB / src / exceptions / DB4oManagerCreationException.java
1 package exceptions;
2 public class DB4oManagerCreationException extends Exception {
3  private static final long serialVersionUID = 1L;
4  
5  public DB4oManagerCreationException()
6   {
7     super();
8   }
9   /**This exception is triggered if there is a problem when constructor of DB4oManager is executed
10   *@param String
11   *@return None
12   */
13   public DB4oManagerCreationException(String s)
14   {
15     super(s);
16   }
17 }