/*
 * AuthenticationException.java
 *
 * Created on 25 June 2002, 15:51
 */

package org.bodington.server.realm;

/**
 *
 * @author  bmb6jrm
 * @version
 */
public class AuthenticationException extends java.lang.Exception
{
    
    /**
     * Creates new <code>AuthenticationException</code> without detail message.
     */
    public AuthenticationException()
    {
    }
    
    
    /**
     * Constructs an <code>AuthenticationException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public AuthenticationException(String msg)
    {
	super(msg);
    }
}


