Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
08aaf3b19060c67249a3f3e206690c260e881713
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package exceptions;
public class BadDates extends Exception {
 private static final long serialVersionUID = 1L;
 
 public BadDates()
  {
    super();
  }
  /**This exception is triggered if first date is greater than last date in offers
  *@param String
  *@return None
  */
  public BadDates(String s)
  {
    super(s);
  }
}

Commits for RRRRHHHH_CoderuralHousesDB/src/exceptions/BadDates.java

Diff revisions: vs.
Revision Author Commited Message
08aaf3 ... camjan Wed 20 May, 2015 21:26:51 +0000

Started with the separated DB with the given code