01: /*
02: * JOSSO: Java Open Single Sign-On
03: *
04: * Copyright 2004-2008, Atricore, Inc.
05: *
06: * This is free software; you can redistribute it and/or modify it
07: * under the terms of the GNU Lesser General Public License as
08: * published by the Free Software Foundation; either version 2.1 of
09: * the License, or (at your option) any later version.
10: *
11: * This software is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this software; if not, write to the Free
18: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
20: */
21:
22: package org.josso.auth.exceptions;
23:
24: /**
25: * This exception is thrown when an authentication fails
26: * An authentication failure can happen, for example, when the credentials supplied by the user are invalid.
27: *
28: * @author <a href="mailto:sgonzalez@josso.org">Sebastian Gonzalez Oyuela</a>
29: * @version $Id: AuthenticationFailureException.java 508 2008-02-18 13:32:29Z sgonzalez $
30: */
31: public class AuthenticationFailureException extends
32: SSOAuthenticationException {
33:
34: /**
35: * This stores the error type detected during authentication, for example AUTH_FAILED.
36: */
37: private String errorType;
38:
39: /**
40: * It uses AUTH_FAILDE as error type.
41: *
42: * @param message El mensaje asociado al error.
43: */
44: public AuthenticationFailureException(String message) {
45: this (message, "AUTH_FAILED");
46: }
47:
48: /**
49: * Allows error type specification, usefull when extending the Authenticator to provide business specific rules.
50: *
51: * @param message The error message
52: * @param errorType The error type
53: */
54: public AuthenticationFailureException(String message,
55: String errorType) {
56: super (message);
57: this .errorType = errorType;
58: }
59:
60: public String getErrorType() {
61: return this.errorType;
62: }
63: }
|