com.ebay.sdk.SdkHTTPException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebaysdkcore Show documentation
Show all versions of ebaysdkcore Show documentation
This SDK enables you to use Java to make API calls in the eBay Trading API, which is an XML API.
This maven build is provided by tonicsoft for convenience and is an exact copy of version 981 of
the project distributed by eBay via the official eBay SDK website.
The newest version!
/*
Copyright (c) 2013 eBay, Inc.
This program is licensed under the terms of the eBay Common Development and
Distribution License (CDDL) Version 1.0 (the "License") and any subsequent version
thereof released by eBay. The then-current version of the License can be found
at http://www.opensource.org/licenses/cddl1.php and in the eBaySDKLicense file that
is under the root directory at /LICENSE.txt.
*/
package com.ebay.sdk;
import javax.xml.ws.http.HTTPException;
/**
* Wraps HTTP exception (unexpected return codes 300 - 499, 501-599) for SDK.
* The HTTP return code is available in the ErrorCode property.
*
* Title:
* Description:
* Copyright: Copyright (c) 2004
* Company: eBay Inc.
* @author Ron Murphy & William Yang
* @version 1.0
*/
public class SdkHTTPException extends SdkException {
int errorCode = 0;
public SdkHTTPException(int code) {
errorCode = code;
}
/**
* Create an instance of SdkHTTPException object from the associated HTTPException.
* @param he
* @return the new SdkHTTPException
*/
static public SdkHTTPException fromHTTPException(HTTPException he)
{
int code = he.getStatusCode();
return new SdkHTTPException(code);
}
/**
* Gets the HTTP return code associated with the unexpected HTTP response.
* @return ErrorType
*/
public int getErrorCode() {
return this.errorCode;
}
/**
* Sets the HTTP return code.
* @param errorCode
*/
public void setErrorCode(int errorCode) {
this.errorCode = errorCode;
}
}