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:
java.io.Serializable
public class UnknownContextException extends UsrException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownContextException()
Constructs an UnknownContextException with a default message.UnknownContextException(java.lang.String message)
Constructs an UnknownContextException with the specified detail message.
-
-
-
Constructor Detail
-
UnknownContextException
public UnknownContextException()
Constructs an UnknownContextException with a default message.
-
UnknownContextException
public UnknownContextException(java.lang.String message)
Constructs an UnknownContextException with the specified detail message.
- Parameters:
message
- The message.
-
-