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

org.picketlink.authentication.AuthenticationException Maven / Gradle / Ivy

There is a newer version: 3.0.0.Beta2
Show newest version
package org.picketlink.authentication;

import org.picketlink.SecurityException;

/**
 * Thrown if there is an error during the authentication process
 * 
 * @author Shane Bryzak
 */
public class AuthenticationException extends SecurityException
{
    private static final long serialVersionUID = -7486433031372506270L;

    public AuthenticationException(String message) 
    {
        super(message);
    }

    public AuthenticationException(String message, Throwable cause) 
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy