Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/UserCanceledException.cs')
-rw-r--r--LibGit2Sharp/UserCanceledException.cs15
1 files changed, 5 insertions, 10 deletions
diff --git a/LibGit2Sharp/UserCanceledException.cs b/LibGit2Sharp/UserCanceledException.cs
index fdc03396..45ab75f3 100644
--- a/LibGit2Sharp/UserCanceledException.cs
+++ b/LibGit2Sharp/UserCanceledException.cs
@@ -14,8 +14,7 @@ namespace LibGit2Sharp
/// Initializes a new instance of the <see cref="LibGit2Sharp.UserCancelledException"/> class.
/// </summary>
public UserCancelledException()
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.UserCancelledException"/> class with a specified error message.
@@ -23,8 +22,7 @@ namespace LibGit2Sharp
/// <param name="message">A message that describes the error.</param>
public UserCancelledException(string message)
: base(message)
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.UserCancelledException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
@@ -33,8 +31,7 @@ namespace LibGit2Sharp
/// <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>
public UserCancelledException(string message, Exception innerException)
: base(message, innerException)
- {
- }
+ { }
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.UserCancelledException"/> class with a serialized data.
@@ -43,12 +40,10 @@ namespace LibGit2Sharp
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected UserCancelledException(SerializationInfo info, StreamingContext context)
: base(info, context)
- {
- }
+ { }
internal UserCancelledException(string message, GitErrorCode code, GitErrorCategory category)
: base(message, code, category)
- {
- }
+ { }
}
}