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

org.cloudfoundry.identity.uaa.authentication.ProviderConfigurationException Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package org.cloudfoundry.identity.uaa.authentication;

import org.springframework.security.core.AuthenticationException;

public class ProviderConfigurationException extends AuthenticationException {
    public ProviderConfigurationException(String msg, Throwable t) {
        super(msg, t);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy