How can I get the handle to the specific exception...
# ktor
t
How can I get the handle to the specific exception that’s being handled by StatusPages exception(){}?
c
it
Copy code
application.install(StatusPages) {
            exception<NotImplementedError> { error ->
                call.respondHtml(HttpStatusCode.NotImplemented) {
...
t
Thanks. I was overthinking it.