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 OfferCanNotBeBooked extends Exception {
	private static final long serialVersionUID = 1L;

	public OfferCanNotBeBooked() {
		super();
	}
	
	/**This exception is triggered if an offer cannot be booked 
	 *@param String
	 *@return None
	 */
	public OfferCanNotBeBooked(String s)
	{
		super(s);
	}
}

Commits for RRRRHHHH_Code/ruralHousesDB/src/exceptions/OfferCanNotBeBooked.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