Example usage for org.springframework.security.core AuthenticationException subclass-usage

List of usage examples for org.springframework.security.core AuthenticationException subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.core AuthenticationException subclass-usage.

Usage

From source file com.gs.config.IntentLimitExceeded.java

/**
 *
 * @author SIGSA
 */
public class IntentLimitExceeded extends AuthenticationException {

From source file com.sg.rest.webtoken.WebSecurityBaseAuthenticationException.java

/**
 *
 * @author tarasev
 */
public class WebSecurityBaseAuthenticationException extends AuthenticationException {

From source file authentication.jwt.JwtTokenException.java

/**
 * Class comments go here...
 *
 * @author Roberto Perillo
 * @version 1.0 4 de out de 2016
 */

From source file com.sshdemo.common.security.manage.service.UserServiceException.java

public class UserServiceException extends AuthenticationException {

    private static final long serialVersionUID = 5250241049755157001L;

    public UserServiceException(String msg) {
        super(msg);

From source file com.sshdemo.common.security.acl.domain.PermissionNotFoundException.java

public class PermissionNotFoundException extends AuthenticationException {

    private static final long serialVersionUID = 9043199421424927555L;

    /**
      * Constructs a <code>PermissionNotFoundException</code> with the specified

From source file com.nec.harvest.exception.OrganizationNotFoundException.java

/**
 * @author sondn
 *
 */
public class OrganizationNotFoundException extends AuthenticationException {

From source file com.nec.harvest.exception.HarvestAuthenticationException.java

/**
 * 
 * @author <a href="mailto:sondn@nec.vn">Ngoc Son Dang</a>
 * @version AuthenticationException.java
 * @since 2014/06/17
 *

From source file waffle.spring.GuestLoginDisabledAuthenticationException.java

/**
 * Guest login is disabled authentication exception.
 * 
 * @author dblock[at]dblock[dot]org
 */
public class GuestLoginDisabledAuthenticationException extends AuthenticationException {

From source file org.carewebframework.security.spring.AuthenticationCancelledException.java

/**
 * Exception thrown when user cancels an authentication attempt.
 */
public class AuthenticationCancelledException extends AuthenticationException {

    private static final long serialVersionUID = 1L;

From source file org.kamranzafar.xmpp.template.XmppAuthenticationException.java

/**
 * Created by kamran on 05/08/15.
 */
public class XmppAuthenticationException extends AuthenticationException {
    public XmppAuthenticationException(String msg, Throwable t) {
        super(msg, t);