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

org.codehaus.plexus.security.exception.AuthenticationException Maven / Gradle / Ivy

There is a newer version: 1.0-alpha-3
Show newest version
package org.codehaus.plexus.security.exception;

/**
 * EntityAuthenticationException.java
 * 
 * @author Dan Diephouse
 * @since Nov 24, 2002 
 */
public class AuthenticationException extends Exception
{
    /**
     * Constructor EntityAuthenticationException.
     */
    public AuthenticationException()
    {
        super();
    }
    
    /**
     * Constructor EntityAuthenticationException.
     * @param string
     */
    public AuthenticationException(String message)
    {
        super(message);
    }

    /**
     * Constructor EntityAuthenticationException.
     * @param string
     */
    public AuthenticationException(String message, Exception e)
    {
        super(message, e);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy