We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e66c642 commit a0d8163Copy full SHA for a0d8163
LibGit2Sharp/Core/GitErrorCategory.cs
@@ -1,6 +1,6 @@
1
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp
2
{
3
- internal enum GitErrorCategory
+ public enum GitErrorCategory
4
5
Unknown = -1,
6
None,
@@ -36,6 +36,8 @@ internal enum GitErrorCategory
36
Filesystem,
37
Patch,
38
Worktree,
39
- Sha1
+ Sha1,
40
+ Http,
41
+ Internal
42
}
43
LibGit2Sharp/Core/GitErrorCode.cs
@@ -1,8 +1,18 @@
-namespace LibGit2Sharp.Core
- internal enum GitErrorCode
+ /// <summary>
+ /// Git Error Code contains a list of possible error codes returned by LibGit2
+ /// </summary>
+ public enum GitErrorCode
7
8
9
+ /// No Error result OK
10
11
Ok = 0,
12
+
13
14
+ /// General Error
15
16
Error = -1,
17
18
/// <summary>
0 commit comments