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:
  • Constructor Details

    • HeapException

      public HeapException()
      Constructs a new exception with null 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.
    • HeapException

      public HeapException(String message, Throwable cause)
      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.