/***************************************************
*
* cismet GmbH, Saarbruecken, Germany
*
* ... and it just works.
*
****************************************************/
/*
* AuthenticationCanceledException.java
*
* Created on 19. Oktober 2006, 09:19
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package de.cismet.security.exceptions;
/**
* DOCUMENT ME!
*
* @author Sebastian
* @version $Revision$, $Date$
*/
public class AuthenticationCanceledException extends Exception {
//~ Constructors -----------------------------------------------------------
/**
* Creates a new instance of AuthenticationCanceledException.
*/
public AuthenticationCanceledException() {
super("The HTTP authentication was canceled by user"); // NOI18N
}
/**
* Creates a new AuthenticationCanceledException object.
*
* @param message DOCUMENT ME!
*/
public AuthenticationCanceledException(final String message) {
super(message);
}
}