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