Package org.drinkless.tdlib
Interface Client.ExceptionHandler
-
- Enclosing class:
- Client
public static interface Client.ExceptionHandlerInterface for handler of exceptions thrown while invoking ResultHandler. By default, all such exceptions are ignored. All exceptions thrown from ExceptionHandler are ignored.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonException(Throwable e)Callback called on exceptions thrown while invoking ResultHandler.
-
-
-
Method Detail
-
onException
void onException(Throwable e)
Callback called on exceptions thrown while invoking ResultHandler.- Parameters:
e- Exception thrown by ResultHandler.
-
-