OutOfMemoryError: MetaspaceOutOfMemoryError — Metaspace
The JVM has exhausted its Metaspace memory area where class metadata is stored.
UnsatisfiedLinkErrorA native method cannot find its native library implementation.
The JVM cannot find the native library (.dll, .so, .dylib) required by a JNI method. The library is not in the java.library.path or the system library path.
Add the library directory to java.library.path (-Djava.library.path=...). Ensure the native library is compiled for the correct platform. Set LD_LIBRARY_PATH (Linux) or PATH (Windows) to include the library.
OutOfMemoryError: MetaspaceThe JVM has exhausted its Metaspace memory area where class metadata is stored.
IllegalArgumentExceptionA method receives an argument that is not valid for its expected range or format.
ArrayIndexOutOfBoundsExceptionAn array is accessed with an index that is negative or greater than or equal to the array length.
StringIndexOutOfBoundsExceptionA string is accessed with an index that is outside its valid range.
PatternSyntaxExceptionA regular expression has invalid syntax.
ArrayStoreExceptionAn object of the wrong type is stored in an array.