All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.javalin.community.routing.dsl.DslException.kt Maven / Gradle / Ivy

There is a newer version: 6.4.0
Show newest version
package io.javalin.community.routing.dsl

import kotlin.reflect.KClass

/* Exception handlers */

typealias DslExceptionHandler = CONTEXT.(exception: EXCEPTION) -> RESPONSE

interface DslException {
    val type: KClass
    val handler: DslExceptionHandler
}

open class DefaultDslException (
    override val type: KClass,
    override val handler: DslExceptionHandler
) : DslException




© 2015 - 2025 Weber Informatics LLC | Privacy Policy