try catchで基本のExceptionクラスを常にキャッチするのは良いコーディング方法ですか?
try
{
//
// Piece of code
//
}
catch (CustomException $my_ex)
{
// Handle CustomExcepton
}
catch (Exception $other_exceptions)
{
// Handle all other exceptions
}
もしそうなら、なぜですか?