Package org.forgerock.openig.heap
Class HeapException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.openig.heap.HeapException
-
- All Implemented Interfaces:
Serializable
public class HeapException extends Exception
An exception that is thrown during heap operations.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HeapException()
Constructs a new exception withnull
as its detail message.HeapException(String message)
Constructs a new exception with the specified detail message.HeapException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.HeapException(Throwable cause)
Constructs a new exception with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
HeapException
public HeapException()
Constructs a new exception withnull
as its detail message.
-
HeapException
public HeapException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- The specified detail message of this exception.
-
HeapException
public HeapException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- The specified cause of this exception.
-
-