Examples of NoSuchNodeException


Examples of org.apache.cocoon.precept.NoSuchNodeException

        getLogger().debug("no constraints for [" + String.valueOf(xpath) + "]");
        return (null);
      }
    }
    else {
      throw new NoSuchNodeException(xpath);
    }
  }
View Full Code Here

Examples of org.apache.cocoon.precept.NoSuchNodeException

                getLogger().debug("no constraints for [" + String.valueOf(xpath) + "]");
                return (null);
            }
        }
        else {
            throw new NoSuchNodeException(xpath);
        }
    }
View Full Code Here

Examples of org.apache.cocoon.precept.NoSuchNodeException

        Node node = lookupNode(xpath);
        if (node != null) {
            return (node.getValue());
        }
        else {
            throw new NoSuchNodeException(xpath);
        }
    }
View Full Code Here

Examples of org.apache.slider.core.exceptions.NoSuchNodeException

      if (containerId.equals(node.id)) {
        return node;
      }
    }
    //at this point: no node
    throw new NoSuchNodeException(containerId);
  }
View Full Code Here

Examples of org.apache.slider.core.exceptions.NoSuchNodeException

      if (containerId.equals(node.id)) {
        return node;
      }
    }
    //at this point: no node
    throw new NoSuchNodeException(containerId);
  }
View Full Code Here

Examples of org.elasticsearch.action.NoSuchNodeException

                            }
                        }
                    });
                } else {
                    if (node == null) {
                        onFailure(nodeId, new NoSuchNodeException(nodeId));
                    } else {
                        NodeRequest nodeRequest = newNodeRequest(nodeId, request);
                        transportService.sendRequest(node, transportNodeAction, nodeRequest, transportRequestOptions, new BaseTransportResponseHandler<NodeResponse>() {
                            @Override public NodeResponse newInstance() {
                                return newNodeResponse();
View Full Code Here

Examples of org.elasticsearch.action.NoSuchNodeException

                                }
                            }
                        });
                    } else {
                        if (node == null) {
                            onFailure(idx, nodeId, new NoSuchNodeException(nodeId));
                        } else if (!clusterService.localNode().shouldConnectTo(node)) {
                            onFailure(idx, nodeId, new NodeShouldNotConnectException(clusterService.localNode(), node));
                        } else {
                            NodeRequest nodeRequest = newNodeRequest(nodeId, request);
                            transportService.sendRequest(node, transportNodeAction, nodeRequest, transportRequestOptions, new BaseTransportResponseHandler<NodeResponse>() {
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.