Example #1
0
 protected TableServiceGeneralException(SerializationInfo info, StreamingContext context) : base(info, context)
 {
     if (info == null)
     {
         throw new ArgumentNullException("info");
     }
     this.ErrorCode = (TableServiceError)info.GetValue("this.ErrorCode", typeof(TableServiceError));
 }
Example #2
0
 public TableServiceGeneralException(TableServiceError errorCode, Exception innerException) : base("", innerException)
 {
     this.ErrorCode = errorCode;
 }