com.chutneytesting.tools.ThrowingRunnable Maven / Gradle / Ivy
The newest version!
/*
* SPDX-FileCopyrightText: 2017-2024 Enedis
*
* SPDX-License-Identifier: Apache-2.0
*
*/
package com.chutneytesting.tools;
@FunctionalInterface
public interface ThrowingRunnable extends ThrowingSupplier {
void run() throws Exception;
@Override
default Void get() throws Exception {
run();
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy