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:
authorTim Clem <timothy.clem@gmail.com>2012-06-03 20:10:44 +0400
committernulltoken <emeric.fermas@gmail.com>2012-06-03 20:45:03 +0400
commitdd15de908706711b51b7acb24faab726d2b3cb16 (patch)
treef5077b3cec0ad242ad289a4ec220edb42a18e133 /LibGit2Sharp/Reference.cs
parent5f55b57123e45f94a87d97661d5265a1b7bf8ef4 (diff)
Rename LibGit2Exception to LibGit2SharpException
Diffstat (limited to 'LibGit2Sharp/Reference.cs')
-rw-r--r--LibGit2Sharp/Reference.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Reference.cs b/LibGit2Sharp/Reference.cs
index 84c41601..0a39022b 100644
--- a/LibGit2Sharp/Reference.cs
+++ b/LibGit2Sharp/Reference.cs
@@ -52,7 +52,7 @@ namespace LibGit2Sharp
break;
default:
- throw new LibGit2Exception(String.Format(CultureInfo.InvariantCulture, "Unable to build a new reference from a type '{0}'.", Enum.GetName(typeof(GitReferenceType), type)));
+ throw new LibGit2SharpException(String.Format(CultureInfo.InvariantCulture, "Unable to build a new reference from a type '{0}'.", Enum.GetName(typeof(GitReferenceType), type)));
}
return reference as T;