
org.intellimate.izou.threadpool.ExceptionCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of izou Show documentation
Show all versions of izou Show documentation
Izou is a framework used for an addon-based personal assistant
The newest version!
package org.intellimate.izou.threadpool;
import ro.fortsoft.pf4j.AddonAccessible;
/**
* classes who implement this interface get notified when the thread submitted to the ThreadPool crashes.
* @author LeanderK
* @version 1.0
*/
@AddonAccessible
public interface ExceptionCallback {
/**
* this method gets called when the task submitted to the ThreadPool crashes
* @param e the exception catched
*/
void exceptionThrown(Exception e);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy