--- old/src/java.base/share/classes/sun/reflect/annotation/TypeNotPresentExceptionProxy.java 2016-06-11 14:21:09.920998660 -0700 +++ new/src/java.base/share/classes/sun/reflect/annotation/TypeNotPresentExceptionProxy.java 2016-06-11 14:21:09.792998666 -0700 @@ -46,6 +46,14 @@ return new TypeNotPresentException(typeName, cause); } + public String typeName() { + return typeName; + } + + public Throwable getCause() { + return cause; + } + @Override public String toString() { return typeName + ".class /* Warning: type not present! */";