public B call()

in geronimo-opentracing-common/src/main/java/org/apache/geronimo/microprofile/opentracing/common/microprofile/thread/ScopePropagatingCallable.java [51:62]


    public B call() throws Exception {
        RuntimeException error = null;
        final Span span = before();
        try {
            return delegate.call();
        } catch (final RuntimeException re) {
            error = re;
            throw re;
        } finally {
            after(span, error);
        }
    }