Skip to content

Commit 9f5db4a

Browse files
Merge pull request #693 from appwrite/fix-dotnet-exception
fix: Add missing semicolon in AppwriteException constructor in .NET SDK
2 parents a05a5b0 + f900c83 commit 9f5db4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/dotnet/src/Appwrite/Exception.cs.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace {{spec.title | caseUcfirst}}
1515
string? response = null) : base(message)
1616
{
1717
this.Code = code;
18-
this.Type = type
18+
this.Type = type;
1919
this.Response = response;
2020
}
2121
public {{spec.title | caseUcfirst}}Exception(string message, Exception inner)

0 commit comments

Comments
 (0)