source: xssim/trunk/src/schedframe/exceptions/ReservationException.java @ 104

Revision 104, 482 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.exceptions;
2
3/**
4 *
5 * @author Marcin Krystek
6 *
7 */
8public class ReservationException extends ModuleException {
9
10        private static final long serialVersionUID = -6262952168251799785L;
11       
12        public ReservationException(){
13                super();
14        }
15
16        public ReservationException(String message){
17                super(message);
18        }
19       
20        public ReservationException(Throwable cause){
21                super(cause);
22        }
23       
24        public ReservationException(String message, Throwable cause){
25                super(message, cause);
26        }
27}
Note: See TracBrowser for help on using the repository browser.