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

io.opentelemetry.instrumentation.testing.util.ThrowingRunnable Maven / Gradle / Ivy

/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.instrumentation.testing.util;

/**
 * A utility interface representing a {@link Runnable} that may throw.
 *
 * @param  Thrown exception type.
 */
@FunctionalInterface
public interface ThrowingRunnable {
  void run() throws E;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy