/**
  * Intercept exceptions to be able to backlist some repos
  */
 protected function initialize()
 {
     try {
         parent::initialize();
     } catch (InvalidRepositoryException $e) {
         self::$blacklist[] = $this->url;
         // Todo: handle this info somehow!
         throw $e;
     }
 }