com.davidbracewell.function.CheckedRunnable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mango Show documentation
Show all versions of mango Show documentation
A set of utilities and tools to speed up and ease programming in Java.
package com.davidbracewell.function;
import java.io.Serializable;
/**
* @author David B. Bracewell
*/
@FunctionalInterface
public interface CheckedRunnable extends Serializable{
void run() throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy