What is the class of exception that will be thrown by such code?
fun Application.someModule() {
install(Plugin) { /* ... */ }
}
fun main() {
embeddedServer(Netty, port = 8080) {
someModule()
someModule()
}.start()
}What is the class of exception that will be thrown by such code?
fun Application.someModule() {
install(Plugin) { /* ... */ }
}
fun main() {
embeddedServer(Netty, port = 8080) {
someModule()
someModule()
}.start()
}Create a free account to access the full topic