Have some discussion about one implementation:
// Pseudocode
accessor type GetValue()
{
try
{
do some action with possible throw exception1
do some action with possible throw exception2
return value;
}
catch (Exception ex)
{
value = default;
throw Wraped in Meaningfull Exception ex
}
}
Can someone explain why it might be a bad design, to use try
-catch
like that (throw and catch at the same method) to safely do some actions and agregate different type of similar exception?
It's not rethrowing
that is wrong but catching all the exceptions
is a bad design: it masks potentially dangerous behaviour. Let's see why. Suppose we use
GetValue()
like this:And the actual picture is
Your design is OK if you catch only expected exception types: