Package ghidra.program.model.lang
Class UnknownInstructionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.program.model.lang.UnknownInstructionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NestedDelaySlotException
An UnknownInstructionException indicates that the bytes at the parse address did not form a legal known instruction.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an InsufficientBytesException with a default message.UnknownInstructionException
(String message) Constructs an InsufficientBytesException 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
-
UnknownInstructionException
public UnknownInstructionException()Constructs an InsufficientBytesException with a default message.
-
UnknownInstructionException
Constructs an InsufficientBytesException with the specified detail message.
- Parameters:
message
- The message.
-