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

pl.edu.icm.unity.oauth.as.token.OAuthTokenException Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2016 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;

/**
 * Thrown when an error is found and error response should be returned by the root 
 * REST method.
 * @author Krzysztof Benedyczak
 */
public class OAuthTokenException extends Exception
{
	private Response errorResponse;

	public OAuthTokenException(Response response)
	{
		super();
		this.errorResponse = response;
	}

	public Response getErrorResponse()
	{
		return errorResponse;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy