Class HeapException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.tonic.analysis.execution.heap.HeapException
-
- All Implemented Interfaces:
Serializable
public class HeapException extends RuntimeException
Runtime failure raised by the simulated heap, such as bad bounds or storage type mismatches.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HeapException(String message)Creates a heap failure.HeapException(String message, Throwable cause)Creates a heap failure with an underlying 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(String message)
Creates a heap failure.- Parameters:
message- description of the failure
-
-