Class InvalidMemoryAccessException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.qbicc.interpreter.impl.InvalidMemoryAccessException
All Implemented Interfaces:
Serializable

public class InvalidMemoryAccessException extends RuntimeException
An exception indicating that a memory access would violate the strong type of the memory.
See Also:
  • Constructor Details

    • InvalidMemoryAccessException

      public InvalidMemoryAccessException()
      Constructs a new InvalidMemoryAccessException instance. The message is left blank (null), and no cause is specified.
    • InvalidMemoryAccessException

      public InvalidMemoryAccessException(String msg)
      Constructs a new InvalidMemoryAccessException instance with an initial message. No cause is specified.
      Parameters:
      msg - the message
    • InvalidMemoryAccessException

      public InvalidMemoryAccessException(Throwable cause)
      Constructs a new InvalidMemoryAccessException instance with an initial cause. If a non-null cause is specified, its message is used to initialize the message of this InvalidMemoryAccessException; otherwise the message is left blank (null).
      Parameters:
      cause - the cause
    • InvalidMemoryAccessException

      public InvalidMemoryAccessException(String msg, Throwable cause)
      Constructs a new InvalidMemoryAccessException instance with an initial message and cause.
      Parameters:
      msg - the message
      cause - the cause