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:
java.io.Serializable
public class UndefinedValueException extends UsrException
An UndefinedValueException is thrown when a value for a register is looked up that is undefined.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UndefinedValueException()
construct a new UndefinedValueException with no message.UndefinedValueException(java.lang.String message)
constructs a new UndefinedValueException with a descriptive message.
-
-
-
Constructor Detail
-
UndefinedValueException
public UndefinedValueException()
construct a new UndefinedValueException with no message.
-
UndefinedValueException
public UndefinedValueException(java.lang.String message)
constructs a new UndefinedValueException with a descriptive message.- Parameters:
message
- the description of what went wrong.
-
-