From 37562941f4d7225b98c0750d79b3700b902235d3 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Thu, 26 May 2016 12:22:20 +0100 Subject: [PATCH] Node.getChildByName(): javadoc to note throws NodeException if child not found --- src/main/java/net/kemitix/node/Node.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/net/kemitix/node/Node.java b/src/main/java/net/kemitix/node/Node.java index 88b6400..f6e2de1 100644 --- a/src/main/java/net/kemitix/node/Node.java +++ b/src/main/java/net/kemitix/node/Node.java @@ -183,6 +183,8 @@ public interface Node { * @param name the name of the child * * @return the node + * + * @throws NodeException if the node is not found */ Node getChildByName(String name);