Package com.helger.photon.ajax.callback
Interface IAjaxExceptionCallback
-
- All Superinterfaces:
com.helger.commons.callback.ICallback
- All Known Implementing Classes:
LoggingAjaxExceptionCallback
public interface IAjaxExceptionCallback extends com.helger.commons.callback.ICallbackCallback interface to handle thrown exception objects from the Ajax servlet.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAjaxExecutionException(IAjaxInvoker aAjaxInvoker, String sFunctionName, IAjaxExecutor aAjaxExecutor, com.helger.web.scope.IRequestWebScopeWithoutResponse aRequestScope, Exception ex)Called when an exception of the specified type occurred
-
-
-
Method Detail
-
onAjaxExecutionException
void onAjaxExecutionException(@Nonnull IAjaxInvoker aAjaxInvoker, @Nonnull String sFunctionName, @Nonnull IAjaxExecutor aAjaxExecutor, @Nonnull com.helger.web.scope.IRequestWebScopeWithoutResponse aRequestScope, @Nonnull Exception ex)
Called when an exception of the specified type occurred- Parameters:
aAjaxInvoker- Source AJAX invoker. Nevernull.sFunctionName- The AJAX function that should have been involved. Nevernull.aAjaxExecutor- The running AJAX executor. Nevernull.aRequestScope- The request scope. Nevernull.ex- The exception. Nevernull.
-
-