KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jivesoftware > messenger > auth > UnauthorizedException


1 /**
2  * $RCSfile: UnauthorizedException.java,v $
3  * $Revision: 1.3 $
4  * $Date: 2004/12/13 18:06:53 $
5  *
6  * Copyright (C) 2004 Jive Software. All rights reserved.
7  *
8  * This software is published under the terms of the GNU Public License (GPL),
9  * a copy of which is included in this distribution.
10  */

11
12 package org.jivesoftware.messenger.auth;
13
14 /**
15  * Thrown if a user does not have permission to access a particular method.
16  *
17  * @author Iain Shigeoka
18  */

19 public class UnauthorizedException extends Exception JavaDoc {
20
21     public UnauthorizedException() {
22         super();
23     }
24
25     public UnauthorizedException(String JavaDoc message) {
26         super(message);
27     }
28
29     public UnauthorizedException(Throwable JavaDoc cause) {
30         super(cause);
31     }
32
33     public UnauthorizedException(String JavaDoc message, Throwable JavaDoc cause) {
34         super(message, cause);
35     }
36 }
Popular Tags