use of com.navercorp.pinpoint.web.cluster.zookeeper.exception.UnknownException in project pinpoint by naver.
the class ZookeeperClient method getData.
public byte[] getData(String path, boolean watch) throws PinpointZookeeperException, InterruptedException {
checkState();
ZooKeeper zookeeper = this.zookeeper;
try {
return zookeeper.getData(path, watch, null);
} catch (KeeperException exception) {
handleException(exception);
}
throw new UnknownException("UnknownException.");
}
Aggregations