Restore the exception info in the javadoc
Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/5a08198b Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/5a08198b Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/5a08198b Branch: refs/heads/REEF-395 Commit: 5a08198b773819756d375f0ffbd525f0e5a044da Parents: cb901a6 Author: Yunseong Lee <[email protected]> Authored: Tue Jun 23 20:36:47 2015 +0900 Committer: Yunseong Lee <[email protected]> Committed: Tue Jun 23 20:36:47 2015 +0900 ---------------------------------------------------------------------- .../tang/src/main/java/org/apache/reef/tang/ClassHierarchy.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/5a08198b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/ClassHierarchy.java ---------------------------------------------------------------------- diff --git a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/ClassHierarchy.java b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/ClassHierarchy.java index 9f89471..4833717 100644 --- a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/ClassHierarchy.java +++ b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/ClassHierarchy.java @@ -42,6 +42,7 @@ public interface ClassHierarchy { * @param fullName The full name of the class that will be looked up. * @return A non-null reference to a ClassNode or a NamedParameterNode. * @throws NameResolutionException If the class is not found. + * @throws ClassHierarchyException If the class does not pass Tang's static analysis. */ Node getNode(String fullName) throws NameResolutionException;
