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

org.owasp.esapi.errors.AuthenticationException 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 AuthenticationException extends EnterpriseSecurityException {

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

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

    /**
     * Creates a new instance of {@code AuthenticationException}.
     * 
     * @param userMessage the message displayed to the user
     * @param logMessage the message logged
     */
    public AuthenticationException(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 root cause
     */
    public AuthenticationException(String userMessage, String logMessage, Throwable cause) {
        super(userMessage, logMessage, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy