Skip to content

Commit

Permalink
Standardize exception messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Dec 25, 2023
1 parent da19cc6 commit 7117a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CliWrap/Utils/Extensions/AssemblyExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ string destFilePath
var input =
assembly.GetManifestResourceStream(resourceName)
?? throw new MissingManifestResourceException(
$"Could not find resource '{resourceName}'."
$"Failed to find resource '{resourceName}'."
);

using var output = File.Create(destFilePath);
Expand Down

0 comments on commit 7117a20

Please sign in to comment.