Class GridOffHeapOutOfMemoryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.ignite.internal.util.offheap.GridOffHeapOutOfMemoryException
-
- All Implemented Interfaces:
Serializable
public class GridOffHeapOutOfMemoryException extends RuntimeException
Thrown when memory could not be allocated.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GridOffHeapOutOfMemoryException(long size)Constructs out of memory exception.GridOffHeapOutOfMemoryException(long total, long size)Constructs out of memory exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
GridOffHeapOutOfMemoryException
public GridOffHeapOutOfMemoryException(long size)
Constructs out of memory exception.- Parameters:
size- Size that could not be allocated.
-
GridOffHeapOutOfMemoryException
public GridOffHeapOutOfMemoryException(long total, long size)Constructs out of memory exception.- Parameters:
total- Total allocated memory.size- Size that could not be allocated.
-
-