All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.esapi.errors.AuthenticationLoginException Maven / Gradle / Ivy

/**
 * OWASP Enterprise Security API (ESAPI)
 * 
 * This file is part of the Open Web Application Security Project (OWASP)
 * Enterprise Security API (ESAPI) project. For details, please see
 * http://www.owasp.org/index.php/ESAPI.
 *
 * Copyright (c) 2007 - The OWASP Foundation
 * 
 * The ESAPI is published by OWASP under the BSD license. You should read and accept the
 * LICENSE before you use, modify, and/or redistribute this software.
 * 
 * @author Jeff Williams Aspect Security
 * @created 2007
 */
package org.owasp.esapi.errors;

/**
 * An AuthenticationException should be thrown when anything goes wrong during
 * login or logout. They are also appropriate for any problems related to
 * identity management.
 * 
 * @author Jeff Williams ([email protected])
 */
public class AuthenticationLoginException extends AuthenticationException {

	/** The Constant serialVersionUID. */
	private static final long serialVersionUID = 1L;

	/**
	 * Instantiates a new authentication exception.
	 */
	protected AuthenticationLoginException() {
		// hidden
	}

	/**
	 * Creates a new instance of EnterpriseSecurityException.
	 * 
	 * @param userMessage the message displayed to the user
	 * @param logMessage the message logged
	 */
	public AuthenticationLoginException(String userMessage, String logMessage) {
		super(userMessage, logMessage);
	}

	/**
	 * Instantiates a new authentication exception.
	 * 
	 * @param userMessage the message displayed to the user
	 * @param logMessage the message logged
	 * @param cause the cause
	 */
	public AuthenticationLoginException(String userMessage, String logMessage, Throwable cause) {
		super(userMessage, logMessage, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy