Package ghidra.program.model.address
Class AddressOverflowException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ghidra.util.exception.UsrException
-
- ghidra.program.model.address.AddressOverflowException
-
- All Implemented Interfaces:
java.io.Serializable
public class AddressOverflowException extends UsrException
An AddressOverflowException occurs when an attempt to add or subtract a displacement would result in a value which is outside the address space.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddressOverflowException()
Constructs an AddressOverflowException with no detail message.AddressOverflowException(java.lang.String message)
Constructs an AddressOverflowException with the specified detail message.
-
-
-
Constructor Detail
-
AddressOverflowException
public AddressOverflowException()
Constructs an AddressOverflowException with no detail message.
-
AddressOverflowException
public AddressOverflowException(java.lang.String message)
Constructs an AddressOverflowException with the specified detail message.
- Parameters:
message
- The message.
-
-