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:
Serializable
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:
-
Constructor Summary
ConstructorDescriptionConstructs an AddressOverflowException with no detail message.AddressOverflowException
(String message) Constructs an AddressOverflowException 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
-
AddressOverflowException
public AddressOverflowException()Constructs an AddressOverflowException with no detail message.
-
AddressOverflowException
Constructs an AddressOverflowException with the specified detail message.
- Parameters:
message
- The message.
-