Package chemaxon.util
Interface ErrorProcessor
-
@PublicAPI public interface ErrorProcessor
Error processing interface. Example usage: error processing callback to tasks processed on a separate thread.- Since:
- Marvin 5.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
processError(Throwable error)
Error processing method.
-
-
-
Method Detail
-
processError
boolean processError(Throwable error)
Error processing method.- Parameters:
error
- the error- Returns:
true
if the main processing should be continued,false
if the main processing should be interrupted and the error should be thrown to the caller
-
-