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

com.gwtincubator.security.exception.AuthenticationException Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package com.gwtincubator.security.exception;

/**
 * A more specific exception for authentication error type.
 * @author David MARTIN
 *
 */
public class AuthenticationException extends ApplicationSecurityException {

	/**	serialVersionUID */
	private static final long serialVersionUID = -6437864268780034827L;

	/**
	 * 
	 */
	public AuthenticationException() {
		super();
	}

	/**
	 * @param message
	 * @param cause
	 */
	public AuthenticationException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * @param message
	 */
	public AuthenticationException(String message) {
		super(message);
	}

	/**
	 * @param cause
	 */
	public AuthenticationException(Throwable cause) {
		super(cause);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy