com.sta.mutils.ThrowingRunnable Maven / Gradle / Ivy
package com.sta.mutils;
/**
* Name: ThrowingRunnable
* Description: Funktionales Interface, um ein Runnable verwenden zu k?nnen, das eine Exception wirft.
* @param Klasse der Exception, die ggf. geworfen wird
*
* Comment: ...
*
* Copyright: Copyright (c) 2019, 2021
* Company: >StA-Soft<
* @author StA
* @version 1.0
*/
@FunctionalInterface
public interface ThrowingRunnable
{
/**
* Ausf?hrung.
* @throws E Exception
*/
void run() throws E;
}