-1

I know what an OutOfMemoryError is, but what does GC overhead limit mean? How can I solve this?

1 Answers1

0

OutOfMemoryError is a subclass of java.lang.VirtualMachineError; it's thrown by the JVM when it encounters a problem related to utilizing resources. More specifically, the error occurs when the JVM spent too much time performing Garbage Collection and was only able to reclaim very little heap space.

Refer this link for more details and how to find the problem