We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e28d77 commit e10800bCopy full SHA for e10800b
src/CouchDB.Driver/Helpers/RequestsHelper.cs
@@ -43,12 +43,5 @@ public static async Task<T> SendRequestAsync<T>(this Task<T> asyncRequest)
43
}
44
45
46
-
47
- private static Exception NewCouchExteption(this CouchError e, Type type)
48
- {
49
- ConstructorInfo ctor = type.GetConstructor(new[] { typeof(string), typeof(string) });
50
- var exception = (CouchException)ctor.Invoke(new string[] { e.Error, e.Reason });
51
- return exception;
52
- }
53
54
0 commit comments