Node.getChildByName(): javadoc to note throws NodeException if child not found

This commit is contained in:
Paul Campbell 2016-05-26 12:22:20 +01:00
parent 41bd84b6f6
commit 37562941f4

View file

@ -183,6 +183,8 @@ public interface Node<T> {
* @param name the name of the child
*
* @return the node
*
* @throws NodeException if the node is not found
*/
Node<T> getChildByName(String name);