Package ghidra.program.model.lang
Class InsufficientBytesException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.program.model.lang.InsufficientBytesException
- All Implemented Interfaces:
Serializable
An InsufficientBytesException indicates that there were not enough consecutive bytes available to fully parse an instruction.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an InsufficientBytesException with a default message.InsufficientBytesException
(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
-
InsufficientBytesException
public InsufficientBytesException()Constructs an InsufficientBytesException with a default message.
-
InsufficientBytesException
Constructs an InsufficientBytesException with the specified detail message.
- Parameters:
message
- The message.
-