Examples of PropertyStoreException


Examples of com.linkedin.d2.discovery.stores.PropertyStoreException

    {
      callback.get(10, TimeUnit.SECONDS);
    }
    catch (Exception e)
    {
      throw new PropertyStoreException(e);
    }
  }
View Full Code Here

Examples of com.linkedin.d2.discovery.stores.PropertyStoreException

    {
      callback.get(10, TimeUnit.SECONDS);
    }
    catch (Exception e)
    {
      throw new PropertyStoreException(e);
    }
  }
View Full Code Here

Examples of com.linkedin.d2.discovery.stores.PropertyStoreException

    {
      return _zk.getChildren(_path, false);
    }
    catch (Exception e)
    {
      throw new PropertyStoreException("Failed to list children of path " + _path, e);
    }
  }
View Full Code Here

Examples of com.linkedin.d2.discovery.stores.PropertyStoreException

      store.start(callback);
      callback.get(30, TimeUnit.SECONDS);
    }
    catch (Exception e)
    {
      throw new PropertyStoreException("Failed to start store", e);
    }
  }
View Full Code Here

Examples of com.linkedin.helix.store.PropertyStoreException

      }
    }
    catch (Exception e)
    {
      LOG.error("Exception in creatPropertyNamespace(" + prefix + ")", e);
      throw new PropertyStoreException(e.toString());
    }
  }
View Full Code Here

Examples of com.linkedin.helix.store.PropertyStoreException

    }
    catch (Exception e)
    {
      LOG.error("Exception when setProperty(" + key + ", " + value + ")", e);
      throw new PropertyStoreException(e.toString());
    }
  }
View Full Code Here

Examples of com.linkedin.helix.store.PropertyStoreException

      return value;
    }
    catch (Exception e)
    {
      LOG.error("Exception in getProperty(" + key + ")", e);
      throw (new PropertyStoreException(e.toString()));
    }
  }
View Full Code Here

Examples of com.linkedin.helix.store.PropertyStoreException

      // OK
    }
    catch (Exception e)
    {
      LOG.error("Exception in removeProperty(" + key + ")", e);
      throw (new PropertyStoreException(e.toString()));
    }
  }
View Full Code Here

Examples of com.linkedin.helix.store.PropertyStoreException

      // OK
    }
    catch (Exception e)
    {
      LOG.error("Exception in removeProperty(" + prefix + ")", e);
      throw (new PropertyStoreException(e.toString()));
    }
  }
View Full Code Here

Examples of com.linkedin.helix.store.PropertyStoreException

  }

  @Override
  public void setPropertyDelimiter(String delimiter) throws PropertyStoreException
  {
    throw new PropertyStoreException("setPropertyDelimiter() not implemented for ZKPropertyStore");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.