vote up 1 vote down star

In an MMVM application, how should exceptions be handled and bubbled?

If I get an exception in my model, during an Async callback, and throw an exception, this does not get bubbled to the ViewModel. I suspect that this is because the callback is not running on the UI thread.

What's the best practice for this?

Mark

flag

Hi Mark, this all depends on your design. Can you provide some code? – Ray Booysen Apr 3 at 8:09

1 Answer

vote up 1 vote down check

Best practice is to catch the exception in the async callback pass it back with an event. The WebClient events model it pretty well (where the caller will have to test for Error before they access the data).

link|flag
Great, that is what I am doing, gives me some reassurance that I'm currently doing things in the correct way :-) – Mark Cooper Apr 6 at 7:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.