/**
  * @throws \EventCalendar\Goog\GoogApiException
  */
 public function render()
 {
     $this->prepareDate();
     $this->googAdapter->setBoundary($this->year, $this->month);
     try {
         $this->events = $this->googAdapter->loadEvents();
     } catch (GoogApiException $e) {
         throw $e;
     }
     parent::render();
 }