Interface ErrorPostProcessor
-
- All Known Implementing Classes:
AbstractErrorPostProcessor,MultiErrorPostProcessor,Null,OutOfMemory,RemoveExceptionPrefix,RemoveStackTrace
public interface ErrorPostProcessorInterface for post-processors for error messages. To be used by error handlers.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringpostProcessError(ErrorHandler handler, Actor source, String type, String msg)Post-processes the error.
-
-
-
Method Detail
-
postProcessError
String postProcessError(ErrorHandler handler, Actor source, String type, String msg)
Post-processes the error.- Parameters:
handler- the error handler that this call comes fromsource- the source actor where the error originatedtype- the type of errormsg- the error message- Returns:
- the (potentially) updated error message
-
-