///
/// Constructs a new <#=this.Structure.Name#> with the specified error
/// message.
///
///
/// Describes the error encountered.
///
public <#=this.Structure.Name#>(string message)
: base(message) {}
///
/// Construct instance of <#=this.Structure.Name#>
///
///
///
public <#=this.Structure.Name#>(string message, Exception innerException)
: base(message, innerException) {}
///
/// Construct instance of <#=this.Structure.Name#>
///
///
public <#=this.Structure.Name#>(Exception innerException)
: base(innerException) {}
///
/// Construct instance of <#=this.Structure.Name#>
///
///
///
///
///
///
///
public <#=this.Structure.Name#>(string message, Exception innerException, Amazon.Runtime.ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
///
/// Construct instance of <#=this.Structure.Name#>
///
///
///
///
///
///
public <#=this.Structure.Name#>(string message, Amazon.Runtime.ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}