pl.edu.icm.unity.oauth.as.token.OAuthErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unity-server-oauth Show documentation
Show all versions of unity-server-oauth Show documentation
Client and server OAuth support
The newest version!
/*
* Copyright (c) 2020 Bixbit - Krzysztof Benedyczak. All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package pl.edu.icm.unity.oauth.as.token;
import jakarta.ws.rs.core.Response;
import pl.edu.icm.unity.base.exceptions.EngineException;
public class OAuthErrorException extends EngineException
{
public Response response;
public OAuthErrorException(Response response)
{
this.response = response;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy