A question on Ktor-Client. Can I do this: ```val...
# ktor
d
A question on Ktor-Client. Can I do this:
Copy code
val client = HttpClient(Apache)

try {
    client.get("<https://some.api>")
} catch(t: Throwable) {
    //...
}
also inside a ClientFeature, so that the user does not see anything from the catching?