コード例 #1
0
ファイル: AdminPresenter.php プロジェクト: fuca/sportsclub
 private function doDeleteEntry($id)
 {
     try {
         $this->entryService->deleteEntry($id);
     } catch (Exceptions\DataErrorException $ex) {
         $this->handleDataLoad($id, "this", $ex);
     }
 }