/// <summary>
 /// Initializes a new instance of the <see cref="SalesforceException"/> class.
 /// </summary>
 /// <param name="error">The error.</param>
 /// <param name="description">The description.</param>
 public SalesforceException(SalesforceError error, string description)
     : base(description)
 {
     Error = error;
     Fields = new string[0];
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SalesforceException"/> class.
 /// </summary>
 /// <param name="error">The error.</param>
 /// <param name="description">The description.</param>
 public SalesforceException(SalesforceError error, string description)
     : base(description)
 {
     Error  = error;
     Fields = new string[0];
 }