com.ebay.exceptions.EbayNotFoundResponseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebay-sdk Show documentation
Show all versions of ebay-sdk Show documentation
Java SDK for eBay REST APIs
package com.ebay.exceptions;
import javax.ws.rs.core.Response;
public class EbayNotFoundResponseException extends EbayErrorResponseException {
private static final long serialVersionUID = 3691861894843730351L;
public EbayNotFoundResponseException(final Response response) {
super(response);
}
}