diff -r bcc2354430ff -r ef01e0dccd63 jdk/src/share/classes/sun/management/MemoryNotifInfoCompositeData.java --- a/jdk/src/share/classes/sun/management/MemoryNotifInfoCompositeData.java Thu Apr 10 09:02:22 2008 -0700 +++ b/jdk/src/share/classes/sun/management/MemoryNotifInfoCompositeData.java Thu Apr 10 10:47:13 2008 -0700 @@ -69,7 +69,7 @@ memoryNotifInfoItemValues); } catch (OpenDataException e) { // Should never reach here - throw Util.newInternalError(e); + throw new AssertionError(e); } } @@ -80,7 +80,7 @@ MappedMXBeanType.toOpenType(MemoryNotificationInfo.class); } catch (OpenDataException e) { // Should never reach here - throw Util.newInternalError(e); + throw new AssertionError(e); } }