protected open fun onExceptionSwallowed(@NonNull exception: RuntimeException): Unit
This is called when recoverable exceptions occur at runtime. By default they are ignored and Epoxy will recover, but you can override this to be aware of when they happen.
A common use for this is being aware of duplicates when #setFilterDuplicates(boolean) is enabled.
By default the global exception handler provided by #setGlobalExceptionHandler(ExceptionHandler) is called with the exception. Overriding this allows you to provide your own handling for a controller.