0

こんにちは。そのようなコードをPHPで使用することは可能ですか?

try {
  throw new InternalException('Internal');
} catch (InternalException $e) {
  throw new Exception('Internal To global');
} catch (Exception $e){
  print $e->getMessage();
}

class InternalException extends Exception {
  // some code here
}
4

4 に答える 4

0

はい、特定の例外を個別にキャッチできます。

于 2013-09-25T08:31:42.627 に答える