01: package org.claros.commons.auth.exception;
02:
03: import org.claros.commons.exception.ClarosBaseException;
04:
05: /**
06: * @author Umut Gokbayrak
07: */
08: public class LoginInvalidException extends ClarosBaseException {
09:
10: /**
11: *
12: */
13: private static final long serialVersionUID = 1L;
14:
15: /**
16: *
17: */
18: public LoginInvalidException() {
19: super ();
20:
21: }
22:
23: /**
24: * @param errorKey
25: */
26: public LoginInvalidException(String errorKey) {
27: super (errorKey);
28:
29: }
30:
31: /**
32: * @param nestedException
33: * @param errorKey
34: */
35: public LoginInvalidException(Exception nestedException,
36: String errorKey) {
37: super (nestedException, errorKey);
38:
39: }
40:
41: /**
42: * @param encapsulatedException
43: */
44: public LoginInvalidException(Exception nestedException) {
45: super(nestedException);
46: }
47: }
|