KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > drftpd > master > usermanager > UserExistsException


1 /*
2  * Created on 2004-apr-18
3  *
4  * To change the template for this generated file go to
5  * Window - Preferences - Java - Code Generation - Code and Comments
6  */

7 package net.sf.drftpd.master.usermanager;
8
9 /**
10  * @author mog
11  */

12 public class UserExistsException extends Exception JavaDoc {
13     public UserExistsException() {
14         super();
15     }
16     public UserExistsException(String JavaDoc message) {
17         super(message);
18     }
19     public UserExistsException(Throwable JavaDoc cause) {
20         super(cause);
21     }
22     public UserExistsException(String JavaDoc message, Throwable JavaDoc cause) {
23         super(message, cause);
24     }
25 }
26
Popular Tags