AmazonMWS1.MarketplaceWebServiceProductsException.MarketplaceWebServiceProductsException C# (CSharp) Method

MarketplaceWebServiceProductsException() public method

Constructs MarketplaceWebServiceProductsException with message and wrapped exception
public MarketplaceWebServiceProductsException ( String message, Exception t ) : System
message String Overview of error
t System.Exception Wrapped exception
return System
        public MarketplaceWebServiceProductsException(String message, Exception t)
            : base(message, t)
        {
            this.message = message;
            if (t is MarketplaceWebServiceProductsException)
            {
                MarketplaceWebServiceProductsException ex = (MarketplaceWebServiceProductsException)t;
                this.statusCode = ex.StatusCode;
                this.errorCode = ex.ErrorCode;
                this.errorType = ex.ErrorType;
                this.requestId = ex.RequestId;
                this.xml = ex.XML;
                this.responseHeaderMetadata = ex.ResponseHeaderMetadata;
            }
        }

Same methods

MarketplaceWebServiceProductsException::MarketplaceWebServiceProductsException ( Exception t ) : System
MarketplaceWebServiceProductsException::MarketplaceWebServiceProductsException ( String message ) : System
MarketplaceWebServiceProductsException::MarketplaceWebServiceProductsException ( String message, HttpStatusCode statusCode, ResponseHeaderMetadata rhm ) : System
MarketplaceWebServiceProductsException::MarketplaceWebServiceProductsException ( String message, HttpStatusCode statusCode, String errorCode, String errorType, String requestId, String xml, ResponseHeaderMetadata rhm ) : System
MarketplaceWebServiceProductsException