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

nl._42.boot.saml.UserNotAllowedException Maven / Gradle / Ivy

/*
 * (C) 2014 42 bv (www.42.nl). All rights reserved.
 */
package nl._42.boot.saml;

import org.springframework.security.core.userdetails.UsernameNotFoundException;

/**
 * Thrown whenever a user is not allowed.
 *
 * @author Jeroen van Schagen
 * @since Apr 28, 2015
 */
public class UserNotAllowedException extends UsernameNotFoundException {
    
    public UserNotAllowedException(String message) {
        super(message);
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy