
org.cloudfoundry.identity.uaa.authentication.ProviderConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-identity-server Show documentation
Show all versions of cloudfoundry-identity-server Show documentation
Cloud Foundry User Account and Authentication
The 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 - 2025 Weber Informatics LLC | Privacy Policy