/**
  * delete a timezone
  *
  * @ignore
  *
  * @param \OCA\Calendar\ITimezone $timezone
  * @throws \OCA\Calendar\BusinessLayer\Exception
  */
 public function delete(ITimezone $timezone)
 {
     $this->mapper->delete($timezone);
     throw new Exception('Deleting timezones not yet supported', Http::STATUS_NOT_IMPLEMENTED);
 }