@@ -1820,24 +1820,24 @@ JVM_END
1820
1820
// of a given length and return the objArrayOop
1821
1821
static objArrayOop get_memory_usage_objArray (jobjectArray array, int length, TRAPS) {
1822
1822
if (array == nullptr ) {
1823
- THROW_ (vmSymbols::java_lang_NullPointerException (), 0 );
1823
+ THROW_NULL (vmSymbols::java_lang_NullPointerException ());
1824
1824
}
1825
1825
1826
1826
objArrayOop oa = objArrayOop (JNIHandles::resolve_non_null (array));
1827
1827
objArrayHandle array_h (THREAD, oa);
1828
1828
1829
1829
// array must be of the given length
1830
1830
if (length != array_h->length ()) {
1831
- THROW_MSG_ (vmSymbols::java_lang_IllegalArgumentException (),
1832
- " The length of the given MemoryUsage array does not match the number of memory pools." , 0 );
1831
+ THROW_MSG_NULL (vmSymbols::java_lang_IllegalArgumentException (),
1832
+ " The length of the given MemoryUsage array does not match the number of memory pools." );
1833
1833
}
1834
1834
1835
1835
// check if the element of array is of type MemoryUsage class
1836
1836
Klass* usage_klass = Management::java_lang_management_MemoryUsage_klass (CHECK_NULL);
1837
1837
Klass* element_klass = ObjArrayKlass::cast (array_h->klass ())->element_klass ();
1838
1838
if (element_klass != usage_klass) {
1839
- THROW_MSG_ (vmSymbols::java_lang_IllegalArgumentException (),
1840
- " The element type is not MemoryUsage class" , 0 );
1839
+ THROW_MSG_NULL (vmSymbols::java_lang_IllegalArgumentException (),
1840
+ " The element type is not MemoryUsage class" );
1841
1841
}
1842
1842
1843
1843
return array_h ();
0 commit comments