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

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