If I'm using ASP.NET MVC framework, instantiating a Context and something goes wrong in there, is it ok to throw an Exception and let the Controller handle it?
And then for nested contexts, can the outer context catch exceptions thrown by the inner one? I'm thinking because contexts cannot be aware of each other, but on the other hand, an error is an error... Right?