public function initializeSpec($name)
 {
     try {
         if ($path = $this->fileLocator->locate($this->getFileName($name))) {
             $this->arraySpecs[$name] = $this->loadSpecFile($path, $name);
         }
     } catch (\Exception $e) {
         throw new SpecNotFoundException($name, 'file', $e);
     }
     parent::initializeSpec($name);
 }