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:
java.io.Serializable
public class AddressOutOfBoundsException extends java.lang.RuntimeException
An AddressOutOfBoundsException indicates that the Address is being used to address Memory which does not exist.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddressOutOfBoundsException()
Constructs an AddressOutOfBoundsException with no detail message.AddressOutOfBoundsException(java.lang.String message)
Constructs an AddressOutOfBoundsException with the specified detail message.
-
-
-
Constructor Detail
-
AddressOutOfBoundsException
public AddressOutOfBoundsException()
Constructs an AddressOutOfBoundsException with no detail message.
-
AddressOutOfBoundsException
public AddressOutOfBoundsException(java.lang.String message)
Constructs an AddressOutOfBoundsException with the specified detail message.
- Parameters:
message
- The message.
-
-