io.lsn.spring.auth.provider.UnauthorizedException Maven / Gradle / Ivy
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);
}
}