Allow process() to throw Throwable, which we catch anyway.

This commit is contained in:
Simone Bordet 2016-10-27 15:43:12 +02:00
parent 0f7028e9fa
commit 8cefaba2a4
1 changed files with 2 additions and 2 deletions

View File

@ -156,9 +156,9 @@ public abstract class IteratingCallback implements Callback
* *
* @return the appropriate Action * @return the appropriate Action
* *
* @throws Exception if the sub task processing throws * @throws Throwable if the sub task processing throws
*/ */
protected abstract Action process() throws Exception; protected abstract Action process() throws Throwable;
/** /**
* Invoked when the overall task has completed successfully. * Invoked when the overall task has completed successfully.