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

io.lsn.spring.auth.provider.UnauthorizedException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.lsn.spring.auth.provider;

import org.springframework.security.core.AuthenticationException;

/**
 * @author Patryk Szlagowski 
 */
public class UnauthorizedException extends AuthenticationException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy