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

Revision 104, 490 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 ModuleException extends Exception {
9
10        private static final long serialVersionUID = -3388688857266748587L;
11       
12        public ModuleException() {
13                super();
14        }
15
16    public ModuleException(String message) {
17        super(message);
18    }
19
20    public ModuleException(String message, Throwable cause) {
21        super(message, cause);
22    }
23   
24    public ModuleException(Throwable cause) {
25        super(cause);
26    }
27}
Note: See TracBrowser for help on using the repository browser.