/**
  * @return string
  *
  * @throws \Doctrine\DBAL\Cache\CacheException
  */
 public function getCacheKey()
 {
     if ($this->cacheKey === null) {
         throw CacheException::noCacheKey();
     }
     return $this->cacheKey;
 }