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 ba5f611 commit 4539042Copy full SHA for 4539042
templates/dotnet/src/Appwrite/Client.cs.twig
@@ -166,14 +166,14 @@ namespace {{ spec.title | caseUcfirst }}
166
167
if (code >= 400) {
168
var message = response["message"].ToString();
169
- throw new AppwriteException(message, code, response.ToString());
+ throw new {{spec.title | caseUcfirst}}Exception(message, code, response.ToString());
170
}
171
172
return httpResponseMessage;
173
174
catch (System.Exception e)
175
{
176
- throw new AppwriteException(e.Message, e);
+ throw new {{spec.title | caseUcfirst}}Exception(e.Message, e);
177
178
179
0 commit comments