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:
java.io.Serializable
public class AddressFormatException extends UsrException
An AddressFormatException is thrown when a string that is supposed to be an address representation cannot be parsed.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddressFormatException()
Constructs an AddressFormatException with no detail message.AddressFormatException(java.lang.String message)
Constructs an AddressFormatException with the specified detail message.
-
-
-
Constructor Detail
-
AddressFormatException
public AddressFormatException()
Constructs an AddressFormatException with no detail message.
-
AddressFormatException
public AddressFormatException(java.lang.String message)
Constructs an AddressFormatException with the specified detail message.
- Parameters:
message
- A user message.
-
-