/**
  * @param string $informationKey
  *
  * @return ListInfoNotAvailableException
  */
 public static function create($informationKey)
 {
     /** @var ListInfoNotAvailableException $e */
     $e = new self();
     $e->setInformationKey($informationKey);
     return $e;
 }