All Questions
2 questions
2
votes
2
answers
1k
views
Handling exception types according to the current "layer" of appplication
Imagine this simple application use case, say, for fetching data from outisde of the app. These steps represent the "depth" of the layers, from top to bottom.
UI touch event
ViewModel handles said ...
4
votes
2
answers
256
views
Is it an acceptable practice to Get a property, that involve parsing binary, that might throw an exception?
I have a property that is loaded lazily, any time after the ctor is called.
It is possible that the binary that my property relies on is invalid. If invalid I might have to throw an exception.
...