![JAR search and dependency download from the Maven repository](/logo.png)
com.darwinsys.io.CrawlerCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
package com.darwinsys.io;
/**
* The callback used by the Crawler.
*/
public abstract class CrawlerCallback implements Thread.UncaughtExceptionHandler {
public abstract void handleException(Throwable th);
public void uncaughtException(Thread t, Throwable e){
handleException(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy