如何根据Jersey中的响应状态抛出错误特定的异常?

时间:2017-06-01 08:09:29

标签: java jersey-2.0 jersey-client

这是我目前的代码:

WebTarget resource = client.target(restEndpointURL);
Response response = resource.request().delete();
if (response.getStatusInfo() != Status.OK) {
    String message = String.format("some meaningful error message");
    throw new WebApplicationException(message, response);  
}

我想从此处抛出响应状态特定异常,而不是抛出通用WebApplicationException。

0 个答案:

没有答案