Package ghidra.program.model.address
Class AddressOutOfBoundsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ghidra.program.model.address.AddressOutOfBoundsException
- All Implemented Interfaces:
Serializable
An AddressOutOfBoundsException indicates that the Address is being used to address Memory which does not exist.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an AddressOutOfBoundsException with no detail message.AddressOutOfBoundsException
(String message) Constructs an AddressOutOfBoundsException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AddressOutOfBoundsException
public AddressOutOfBoundsException()Constructs an AddressOutOfBoundsException with no detail message.
-
AddressOutOfBoundsException
Constructs an AddressOutOfBoundsException with the specified detail message.
- Parameters:
message
- The message.
-