You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Initializes a new instance of the <see cref="AmbiguousSpecificationException"/> class with a specified error message.
@@ -44,8 +42,7 @@ public AmbiguousSpecificationException(CultureInfo cultureInfo, string format, p
44
42
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException"/> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
Copy file name to clipboardExpand all lines: LibGit2Sharp/BareRepositoryException.cs
+5-10Lines changed: 5 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -15,17 +15,15 @@ public class BareRepositoryException : LibGit2SharpException
15
15
/// Initializes a new instance of the <see cref="LibGit2Sharp.BareRepositoryException"/> class.
16
16
/// </summary>
17
17
publicBareRepositoryException()
18
-
{
19
-
}
18
+
{}
20
19
21
20
/// <summary>
22
21
/// Initializes a new instance of the <see cref="LibGit2Sharp.BareRepositoryException"/> class with a specified error message.
23
22
/// </summary>
24
23
/// <param name="message">A message that describes the error.</param>
25
24
publicBareRepositoryException(stringmessage)
26
25
:base(message)
27
-
{
28
-
}
26
+
{}
29
27
30
28
/// <summary>
31
29
/// Initializes a new instance of the <see cref="LibGit2Sharp.BareRepositoryException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
@@ -34,8 +32,7 @@ public BareRepositoryException(string message)
34
32
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException"/> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
Copy file name to clipboardExpand all lines: LibGit2Sharp/CheckoutConflictException.cs
+5-10Lines changed: 5 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -16,17 +16,15 @@ public class CheckoutConflictException : LibGit2SharpException
16
16
/// Initializes a new instance of the <see cref="LibGit2Sharp.CheckoutConflictException"/> class.
17
17
/// </summary>
18
18
publicCheckoutConflictException()
19
-
{
20
-
}
19
+
{}
21
20
22
21
/// <summary>
23
22
/// Initializes a new instance of the <see cref="LibGit2Sharp.CheckoutConflictException"/> class with a specified error message.
24
23
/// </summary>
25
24
/// <param name="message">A message that describes the error.</param>
26
25
publicCheckoutConflictException(stringmessage)
27
26
:base(message)
28
-
{
29
-
}
27
+
{}
30
28
31
29
/// <summary>
32
30
/// Initializes a new instance of the <see cref="LibGit2Sharp.CheckoutConflictException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
@@ -35,8 +33,7 @@ public CheckoutConflictException(string message)
35
33
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException"/> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
0 commit comments