01: /*
02: * Created on May 10, 2003
03: */
04: package net.sf.jportlet.service.user;
05:
06: /**
07: * @author herve
08: */
09: public class UserIdNotUniqueException extends UserException {
10: /**
11: *
12: */
13: public UserIdNotUniqueException() {
14: super ();
15: }
16:
17: /**
18: * @param arg0
19: */
20: public UserIdNotUniqueException(String arg0) {
21: super (arg0);
22: }
23:
24: /**
25: * @param arg0
26: * @param arg1
27: */
28: public UserIdNotUniqueException(String arg0, Throwable arg1) {
29: super (arg0, arg1);
30: }
31:
32: /**
33: * @param arg0
34: */
35: public UserIdNotUniqueException(Throwable arg0) {
36: super(arg0);
37: }
38: }
|