throw a exception and handle it in a status page ...
# ktor
n
throw a exception and handle it in a status page with
Copy code
exception<AuthorizationException> { cause ->
        call.respond(HttpStatusCode.Forbidden)
    }
or similar
👍 1