Skip to content

Commit 39012dd

Browse files
authored
Merge pull request #2391 from retailcoder/next
report error code on SEHException
2 parents 594c6da + dbb7c44 commit 39012dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.SourceControl/GitProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ public override IEnumerable<IFileStatusEntry> Status()
504504
}
505505
catch (SEHException ex)
506506
{
507-
throw new SourceControlException(SourceControlText.GitRepoStatusFailed, ex);
507+
throw new SourceControlException(SourceControlText.GitRepoStatusFailed + " (SEH Code " + ex.ErrorCode + ")", ex);
508508
}
509509
}
510510

0 commit comments

Comments
 (0)