Table of Contents

Class AmazonUnmarshallingException

Namespace
Amazon.Runtime
Assembly
AWSSDK.Core.dll

This exception is thrown when there is a parse error on the response back from AWS.

public class AmazonUnmarshallingException : AmazonServiceException, ISerializable
Inheritance
AmazonUnmarshallingException
Implements
Derived
Inherited Members

Constructors

AmazonUnmarshallingException(string, string, Exception)

public AmazonUnmarshallingException(string requestId, string lastKnownLocation, Exception innerException)

Parameters

requestId string
lastKnownLocation string
innerException Exception

AmazonUnmarshallingException(string, string, Exception, HttpStatusCode)

public AmazonUnmarshallingException(string requestId, string lastKnownLocation, Exception innerException, HttpStatusCode statusCode)

Parameters

requestId string
lastKnownLocation string
innerException Exception
statusCode HttpStatusCode

AmazonUnmarshallingException(string, string, string, Exception)

public AmazonUnmarshallingException(string requestId, string lastKnownLocation, string responseBody, Exception innerException)

Parameters

requestId string
lastKnownLocation string
responseBody string
innerException Exception

AmazonUnmarshallingException(string, string, string, Exception, HttpStatusCode)

public AmazonUnmarshallingException(string requestId, string lastKnownLocation, string responseBody, Exception innerException, HttpStatusCode statusCode)

Parameters

requestId string
lastKnownLocation string
responseBody string
innerException Exception
statusCode HttpStatusCode

AmazonUnmarshallingException(string, string, string, string, Exception)

public AmazonUnmarshallingException(string requestId, string lastKnownLocation, string responseBody, string message, Exception innerException)

Parameters

requestId string
lastKnownLocation string
responseBody string
message string
innerException Exception

Properties

LastKnownLocation

Last known location in the response that was parsed, if available.

public string LastKnownLocation { get; }

Property Value

string

Message

public override string Message { get; }

Property Value

string

ResponseBody

The entire response body that caused this exception, if available.

public string ResponseBody { get; }

Property Value

string