private BoxScore_W GetBoxScore_W(Crawler.Manager mgr, Schedule schedule, Int32 lastCount) { if (lastCount == 0) { throw new Exception(String.Format("경기상황 얻어오기 실패, 게임아이디 {0}", schedule.GameId)); } try { var boxScore_W = mgr.GetBoxScore_W(schedule); return boxScore_W; } catch { return GetBoxScore_W(mgr, schedule, lastCount - 1); } }