15 lines
332 B
Kotlin
15 lines
332 B
Kotlin
package be.vandewalleh.features
|
|
|
|
import io.ktor.application.*
|
|
import io.ktor.features.*
|
|
import io.ktor.http.*
|
|
import io.ktor.response.*
|
|
import io.ktor.utils.io.errors.*
|
|
|
|
fun Application.handleErrors() {
|
|
install(StatusPages) {
|
|
exception<IOException> {
|
|
call.respond(HttpStatusCode.BadRequest)
|
|
}
|
|
}
|
|
} |