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 nl.surfnet.mujina.spring.ServiceProviderAuthenticationException.java

@SuppressWarnings("serial")
public class ServiceProviderAuthenticationException extends AuthenticationException {

    public ServiceProviderAuthenticationException(String msg, Throwable t) {
        super(msg, t);
    }

From source file nl.surfnet.mujina.spring.IdentityProviderAuthenticationException.java

@SuppressWarnings("serial")
public class IdentityProviderAuthenticationException extends AuthenticationException {

    @Deprecated
    public IdentityProviderAuthenticationException(String msg, Object extraInformation) {
        super(msg, extraInformation);

From source file nl.surfnet.spring.security.opensaml.IdentityProviderAuthenticationException.java

public class IdentityProviderAuthenticationException extends AuthenticationException {

    public IdentityProviderAuthenticationException(String msg, Object extraInformation) {
        super(msg, extraInformation);
    }

From source file nl.surfnet.spring.security.opensaml.ServiceProviderAuthenticationException.java

public class ServiceProviderAuthenticationException extends AuthenticationException {

    public ServiceProviderAuthenticationException(String msg, Throwable t) {
        super(msg, t);
    }

From source file com.juliuskrah.multipart.security.exception.UserNotActivatedException.java

public class UserNotActivatedException extends AuthenticationException {

    private static final long serialVersionUID = -4146381961275053357L;

    public UserNotActivatedException(String message) {
        super(message);

From source file org.atomsphere.management.svc.authentication.NoDBConnectionException.java

public class NoDBConnectionException extends AuthenticationException {
    private static final long serialVersionUID = 4174718428929093082L;

    public NoDBConnectionException(String msg) {
        super(msg);
    }

From source file de.metas.ui.web.login.exceptions.AlreadyLoggedInException.java

@SuppressWarnings("serial")
public class AlreadyLoggedInException extends AuthenticationException {
    public AlreadyLoggedInException() {
        super("User already logged in");
    }
}

From source file de.metas.ui.web.login.exceptions.NotAuthenticatedException.java

@SuppressWarnings("serial")
public class NotAuthenticatedException extends AuthenticationException {
    public NotAuthenticatedException() {
        super("not authenticated");
    }
}

From source file ru.codemine.ccms.exceptions.ApiTokenInvalidException.java

/**
 *
 * @author Alexander Savelev
 */
public class ApiTokenInvalidException extends AuthenticationException {

From source file ru.codemine.ccms.exceptions.ApiTokenMissingException.java

/**
 *
 * @author Alexander Savelev
 */
public class ApiTokenMissingException extends AuthenticationException {