Inheritance: Amazon.Runtime.AmazonServiceException
Ejemplo n.º 1
0
        public AmazonRDSException(string message, Exception innerException) : base(message, innerException)
        {
            this.message = message;
            AmazonRDSException exception = innerException as AmazonRDSException;

            if (exception != null)
            {
                this.statusCode = exception.StatusCode;
                this.errorCode  = exception.ErrorCode;
                this.errorType  = exception.ErrorType;
                this.requestId  = exception.RequestId;
                this.xml        = exception.XML;
            }
        }