Package ghidra.program.model.address
Class AddressFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.program.model.address.AddressFormatException
- All Implemented Interfaces:
Serializable
An AddressFormatException is thrown when a string that is supposed to be an address representation cannot be parsed.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an AddressFormatException with no detail message.AddressFormatException
(String message) Constructs an AddressFormatException 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
-
AddressFormatException
public AddressFormatException()Constructs an AddressFormatException with no detail message.
-
AddressFormatException
Constructs an AddressFormatException with the specified detail message.
- Parameters:
message
- A user message.
-