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

com.huanshankeji.vertx.ext.web.RoutingContext.kt Maven / Gradle / Ivy

package com.huanshankeji.vertx.ext.web

import io.vertx.ext.web.RoutingContext

/**
 * Runs the [block] and calls [RoutingContext.fail] if a [Throwable] is thrown.
 */
inline fun RoutingContext.checkedRun(block: () -> Unit): Unit =
    try {
        block()
    } catch (t: Throwable) {
        fail(t)
    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy