Skip to content

Commit

Permalink
Copy/paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Mar 28, 2024
1 parent 9f97a28 commit 57af1d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/ExceptionUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ static void ConvertExceptionToFailureInformation(Exception ex, int parentIndex,
}
catch (Exception thrown)
{
exceptionTypes.Add(string.Format(CultureInfo.CurrentCulture, "<exception thrown while retrieving exception message: {0}>", thrown.Message));
messages.Add(string.Format(CultureInfo.CurrentCulture, "<exception thrown while retrieving exception message: {0}>", thrown.Message));
}

try
Expand All @@ -227,7 +227,7 @@ static void ConvertExceptionToFailureInformation(Exception ex, int parentIndex,
}
catch (Exception thrown)
{
exceptionTypes.Add(string.Format(CultureInfo.CurrentCulture, "<exception thrown while retrieving exception stack trace: {0}>", thrown.Message));
stackTraces.Add(string.Format(CultureInfo.CurrentCulture, "<exception thrown while retrieving exception stack trace: {0}>", thrown.Message));
}

indices.Add(parentIndex);
Expand Down

0 comments on commit 57af1d9

Please sign in to comment.