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