unification with the actual initial project. Some things are new now, but there has...
[RRRRHHHH_Code] / ruralHouses / src / exceptions / BadDates.java
1 package exceptions;
2 public class BadDates extends Exception {
3  private static final long serialVersionUID = 1L;
4  
5  public BadDates()
6   {
7     super();
8   }
9   /**This exception is triggered if first date is greater than last date in offers
10   *@param String
11   *@return None
12   */
13   public BadDates(String s)
14   {
15     super(s);
16   }
17 }