Started with the separated DB with the given code
[RRRRHHHH_Code] / ruralHousesDB / src / exceptions / OverlappingOfferExists.java
1 package exceptions;
2 public class OverlappingOfferExists extends Exception {
3  private static final long serialVersionUID = 1L;
4  
5  public OverlappingOfferExists()
6   {
7     super();
8   }
9   /**This exception is triggered if there exists an overlapping offer
10   *@param String
11   *@return None
12   */
13   public OverlappingOfferExists(String s)
14   {
15     super(s);
16   }
17 }