com.sta.mutils.ThrowingRunnable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtools Show documentation
Show all versions of xtools Show documentation
Executable tools for all projects.
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
* Company: >StA-Soft<
* @author StA
* @version 1.0
*/
@FunctionalInterface
public interface ThrowingRunnable
{
/**
* Object verarbeiten.
* @throws E Exception
*/
void run() throws E;
}