Package com.helger.schedule.job
Interface IJobExceptionCallback
-
- All Superinterfaces:
com.helger.commons.callback.ICallback
public interface IJobExceptionCallback extends com.helger.commons.callback.ICallbackCallback interface to handle thrown exception objects from theAbstractJob.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonScheduledJobException(Throwable t, String sJobClassName, com.helger.quartz.IJob aJob)Called when an exception of the specified type occurred
-
-
-
Method Detail
-
onScheduledJobException
void onScheduledJobException(@Nonnull Throwable t, @Nullable String sJobClassName, @Nonnull com.helger.quartz.IJob aJob)
Called when an exception of the specified type occurred- Parameters:
t- The exception. Nevernull.sJobClassName- The name of the job classaJob- TheIJobinstance
-
-