Package ghidra.program.model.lang
Class UnknownContextException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.program.model.lang.UnknownContextException
- All Implemented Interfaces:
Serializable
An UnknownContextException indicates a processor state context must be known before the bytes at the parse address can form a legal known instruction.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an UnknownContextException with a default message.UnknownContextException
(String message) Constructs an UnknownContextException 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
-
UnknownContextException
public UnknownContextException()Constructs an UnknownContextException with a default message.
-
UnknownContextException
Constructs an UnknownContextException with the specified detail message.
- Parameters:
message
- The message.
-