01: /*
02: * Created on 2004-apr-18
03: *
04: * To change the template for this generated file go to
05: * Window - Preferences - Java - Code Generation - Code and Comments
06: */
07: package org.drftpd.usermanager;
08:
09: /**
10: * @author mog
11: */
12: public class UserExistsException extends Exception {
13: public UserExistsException() {
14: super ();
15: }
16:
17: public UserExistsException(String message) {
18: super (message);
19: }
20:
21: public UserExistsException(Throwable cause) {
22: super (cause);
23: }
24:
25: public UserExistsException(String message, Throwable cause) {
26: super(message, cause);
27: }
28: }
|