Package ghidra.program.model.lang
Class UndefinedValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.program.model.lang.UndefinedValueException
- All Implemented Interfaces:
Serializable
An UndefinedValueException is thrown when a value for a register is looked up that is undefined.
- See Also:
-
Constructor Summary
ConstructorDescriptionconstruct a new UndefinedValueException with no message.UndefinedValueException
(String message) constructs a new UndefinedValueException with a descriptive 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
-
UndefinedValueException
public UndefinedValueException()construct a new UndefinedValueException with no message. -
UndefinedValueException
constructs a new UndefinedValueException with a descriptive message.- Parameters:
message
- the description of what went wrong.
-