/// <summary>
 /// Initializes a new instance of the <see cref="AcsApiException"/> class.
 /// </summary>
 /// <param name="errorCode">
 /// The error code.
 /// </param>
 public AcsApiException(AcsApiError errorCode)
     : base(errorCode.ToString())
 {
     this.ErrorCode = errorCode;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AcsApiException"/> class.
 /// </summary>
 /// <param name="errorCode">
 /// The error code.
 /// </param>
 public AcsApiException(AcsApiError errorCode)
     : base(errorCode.ToString())
 {
     this.ErrorCode = errorCode;
 }