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

de.team33.libs.exceptional.v3.XRunnable Maven / Gradle / Ivy

There is a newer version: 8.3.2
Show newest version
package de.team33.libs.exceptional.v3;

/**
 * A kind of runnable that allows to throw a checked exception.
 *
 * @see Runnable
 */
@FunctionalInterface
public interface XRunnable {

    /**
     * Performs this operation.
     *
     * @throws X if so.
     * @see Runnable#run()
     */
    void run() throws X;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy