AmazonMWS1.MarketplaceWebServiceProductsException.MarketplaceWebServiceProductsException C# (CSharp) Method

MarketplaceWebServiceProductsException() public method

Constructs MarketplaceWebServiceProductsException with information available from service
public MarketplaceWebServiceProductsException ( String message, HttpStatusCode statusCode, String errorCode, String errorType, String requestId, String xml, ResponseHeaderMetadata rhm ) : System
message String Overview of error
statusCode HttpStatusCode HTTP status code for error response
errorCode String Error Code returned by the service
errorType String Error type. Possible types: Sender, Receiver or Unknown
requestId String Request ID returned by the service
xml String Compete xml found in response
rhm MarketplaceWebServiceProducts.Model.ResponseHeaderMetadata
return System
        public MarketplaceWebServiceProductsException(String message, HttpStatusCode statusCode, String errorCode, String errorType, String requestId, String xml, ResponseHeaderMetadata rhm)
            : this(message, statusCode, rhm)
        {
            this.errorCode = errorCode;
            this.errorType = errorType;
            this.requestId = requestId;
            this.xml = xml;
        }

Same methods

MarketplaceWebServiceProductsException::MarketplaceWebServiceProductsException ( Exception t ) : System
MarketplaceWebServiceProductsException::MarketplaceWebServiceProductsException ( String message ) : System
MarketplaceWebServiceProductsException::MarketplaceWebServiceProductsException ( String message, Exception t ) : System
MarketplaceWebServiceProductsException::MarketplaceWebServiceProductsException ( String message, HttpStatusCode statusCode, ResponseHeaderMetadata rhm ) : System
MarketplaceWebServiceProductsException