Closed
Description
For each LibGit2SharpException derived type, find its usage and when a construct similar to the following one exist...
if (res == (int)GitErrorCode.Exists)
{
throw new EntryExistsException(
String.Format("A custom transport for '{0}' is already registered", prefix));
}
...add a new ctor to the type and update the calling code to:
if (res == (int)GitErrorCode.Exists)
{
throw new EntryExistsException(CultureInfo.InvariantCulture,
"A custom transport for '{0}' is already registered", prefix);
}
/cc @rooflz