--- old/src/java.base/share/classes/sun/reflect/annotation/TypeNotPresentExceptionProxy.java 2016-05-29 18:05:57.743268587 -0700 +++ new/src/java.base/share/classes/sun/reflect/annotation/TypeNotPresentExceptionProxy.java 2016-05-29 18:05:57.567180591 -0700 @@ -45,4 +45,9 @@ protected RuntimeException generateException() { return new TypeNotPresentException(typeName, cause); } + + @Override + public String memberToString() { + return typeName + " /* Not present! */"; + } }