Zend を学習していますが、まだ次の try-catch ステートメントに遭遇しています。例えば:
try {
$album = $this->getAlbumTable()->getAlbum($id);
}
catch (\Exception $ex) {
return $this->redirect()->toRoute('album', array(
'action' => 'index'
));
}
例外クラス名の前にあるバックスラッシュ「\」記号の重要性がわかりません。