I have a second question for those using Jackson w...
# ktor
m
I have a second question for those using Jackson with Ktor, how do you handle error handling with
call.received
? At the moment I'm doing it with a try-catch but I find it rather ugly
Because when I try to send an invalid object and use
val user = call.receive<UnregisteredUser>()
I can't specify which field is not found.
a
What do you mean that you cannot specify which field isn’t found?