Skip to content

Commit

Permalink
fix error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenWeatherford committed Feb 10, 2025
1 parent a4d531f commit 41a8cac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public async Task<ImmutableArray<PublicModuleIndexEntry>> GetModuleIndexAsync()
}
catch (Exception ex)
{
throw new Exception(string.Format($"Error retrieving MCR modules metadata: {0}", ex.Message), ex);
throw new Exception($"Error retrieving MCR modules metadata: {ex.Message}", ex);
}
}
}

0 comments on commit 41a8cac

Please sign in to comment.