<@U25U0KPFT> I just have the ViewerModel with over...
# tornadofx
b
@carlw I just have the ViewerModel with overriden onCommit() and inside onCommit I just create the new observable, that makes update on the DB, and that add it to the CompositeObservable of the controller. The problem with the exception, that sometimes is thrown from the Observable, that updates the db. (RxJava -jdbc). If I just add it to the CompositeObservable of the controller, the latter will terminate on error. And Gui becomes unresponsive. And all my error messages were in the onError methods of subscriptions. So now I just subscribe to observable in the onCommit method, and print the error if there was an error Anyway I just came to your idea of wrapping the exception, and passing it to the appropireate place