Package ghidra.program.model.data
Class InvalidDataTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.program.model.data.InvalidDataTypeException
- All Implemented Interfaces:
Serializable
Exception thrown if a data type is not valid for the operation being performed.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructor.ConstructorInvalidDataTypeException
(String message) ConstructorInvalidDataTypeException
(String msg, Throwable cause) Construct a new InvalidDataTypeException with the given message and cause -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidDataTypeException
public InvalidDataTypeException()Constructor. -
InvalidDataTypeException
Constructor- Parameters:
dt
- the data type that is invalid for the operation being performed.
-
InvalidDataTypeException
Constructor- Parameters:
message
- detailed message explaining exception
-
InvalidDataTypeException
Construct a new InvalidDataTypeException with the given message and cause- Parameters:
msg
- the exception messagecause
- the exception cause
-