Skip to content

Commit d8269ac

Browse files
committed
Fix exception parsing with response models
1 parent 950363e commit d8269ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/android/library/src/main/java/io/appwrite/exceptions/Exception.kt.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package {{ sdk.namespace | caseDot }}.exceptions
33
import java.lang.Exception
44

55
class {{spec.title | caseUcfirst}}Exception(
6-
message: String? = null,
6+
override val message: String? = null,
77
val code: Int? = null,
88
val response: String? = null
99
) : Exception(message)

0 commit comments

Comments
 (0)