Package io.atlassian.fugue.retry
Class ExceptionHandlers.IgnoreExceptionHandler
- java.lang.Object
-
- io.atlassian.fugue.retry.ExceptionHandlers.IgnoreExceptionHandler
-
- All Implemented Interfaces:
ExceptionHandler
- Enclosing class:
- ExceptionHandlers
private static class ExceptionHandlers.IgnoreExceptionHandler extends java.lang.Object implements ExceptionHandler
-
-
Constructor Summary
Constructors Modifier Constructor Description privateIgnoreExceptionHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhandle(java.lang.RuntimeException a)Act on an exception, this method should be called by clients when an exception occurs in wrapped code.
-
-
-
Method Detail
-
handle
public void handle(java.lang.RuntimeException a)
Description copied from interface:ExceptionHandlerAct on an exception, this method should be called by clients when an exception occurs in wrapped code.- Specified by:
handlein interfaceExceptionHandler- Parameters:
a- the exception to handle
-
-