C# Class Amazon.S3.Util.S3PostUploadException

Inheritance: System.Exception
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
FromResponse ( HttpWebResponse response ) : S3PostUploadException

Parse an S3 Error response and create an S3PostUploadException

S3PostUploadException ( string message ) : System

Initializes a new instance of S3PostUploadException with a specified error message

S3PostUploadException ( string errorCode, string message ) : System

Initializes a new instance of S3PostUploadException with a specified error code and error message

Protected Methods

Method Description
S3PostUploadException ( System info, System context ) : System

Constructs a new instance of the S3PostUploadException class with serialized data.

Private Methods

Method Description
GetObjectData ( System info, System context ) : void

Method Details

FromResponse() public static method

Parse an S3 Error response and create an S3PostUploadException
public static FromResponse ( HttpWebResponse response ) : S3PostUploadException
response System.Net.HttpWebResponse The response from S3
return S3PostUploadException

S3PostUploadException() protected method

Constructs a new instance of the S3PostUploadException class with serialized data.
The parameter is null. The class name is null or is zero (0).
protected S3PostUploadException ( System info, System context ) : System
info System The that holds the serialized object data about the exception being thrown.
context System The that contains contextual information about the source or destination.
return System

S3PostUploadException() public method

Initializes a new instance of S3PostUploadException with a specified error message
public S3PostUploadException ( string message ) : System
message string The error message
return System

S3PostUploadException() public method

Initializes a new instance of S3PostUploadException with a specified error code and error message
public S3PostUploadException ( string errorCode, string message ) : System
errorCode string The error code
message string The error message
return System