Package org.qbicc.interpreter.impl
Class InvalidMemoryAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.qbicc.interpreter.impl.InvalidMemoryAccessException
- All Implemented Interfaces:
Serializable
An exception indicating that a memory access would violate the strong type of the memory.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newInvalidMemoryAccessExceptioninstance.Constructs a newInvalidMemoryAccessExceptioninstance with an initial message.InvalidMemoryAccessException(String msg, Throwable cause) Constructs a newInvalidMemoryAccessExceptioninstance with an initial message and cause.Constructs a newInvalidMemoryAccessExceptioninstance with an initial 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
-
InvalidMemoryAccessException
public InvalidMemoryAccessException()Constructs a newInvalidMemoryAccessExceptioninstance. The message is left blank (null), and no cause is specified. -
InvalidMemoryAccessException
Constructs a newInvalidMemoryAccessExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
InvalidMemoryAccessException
Constructs a newInvalidMemoryAccessExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisInvalidMemoryAccessException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-
InvalidMemoryAccessException
Constructs a newInvalidMemoryAccessExceptioninstance with an initial message and cause.- Parameters:
msg- the messagecause- the cause
-