Skip to content

Commit 9a1f73c

Browse files
authored
Add missing semicolon
1 parent 6ed61bc commit 9a1f73c

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)