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
An exception that is thrown during heap operations.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs 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 Details
-
HeapException
public HeapException()Constructs a new exception withnull
as its detail message. -
HeapException
Constructs a new exception with the specified detail message.- Parameters:
message
- The specified detail message of this exception.
-
HeapException
Constructs a new exception with the specified cause.- Parameters:
cause
- The specified cause of this exception.
-
HeapException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- The specified detail message of this exception.cause
- The specified cause of this exception.
-