I use C # and Caliburn.
Is there a global way to catch all exceptions in all view models?
What about when there is an exception when importing from a DI / IoC container?
Basically I want to display a message box when this happens.
RescueAttribute looks like it needs to be placed in each class of the presentation model, and it doesn't seem to work when you use AsyncActionAttribute at the same time.
source
share