If I want to catch an exception (`java.nio.channel...
# ktor
j
If I want to catch an exception (
java.nio.channels.UnresolvedAddressException
) in my custom plugin, in which phase should I do that?
a
You can intercept any phase before the
Send
phase of the
HttpRequestPipeline
.
🙏 1