在try catch中總是捕獲基類Exception類的好習慣嗎?應該在try catch中捕獲異常類嗎?
try
{
//
// Piece of code
//
}
catch (CustomException $my_ex)
{
// Handle CustomExcepton
}
catch (Exception $other_exceptions)
{
// Handle all other exceptions
}
如果是這樣,爲什麼?