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

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