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

org.springframework.security.oauth2.common.exceptions.UnsupportedResponseTypeException Maven / Gradle / Ivy

There is a newer version: 2.5.2.RELEASE
Show newest version
package org.springframework.security.oauth2.common.exceptions;

/**
 * 

* @deprecated See the OAuth 2.0 Migration Guide for Spring Security 5. * * @author Ryan Heaton */ @SuppressWarnings("serial") @Deprecated public class UnsupportedResponseTypeException extends OAuth2Exception { public UnsupportedResponseTypeException(String msg, Throwable t) { super(msg, t); } public UnsupportedResponseTypeException(String msg) { super(msg); } @Override public String getOAuth2ErrorCode() { return "unsupported_response_type"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy