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 SummaryConstructorsConstructorDescriptionConstructor.ConstructorInvalidDataTypeException(String message) ConstructorInvalidDataTypeException(String msg, Throwable cause) Construct a new InvalidDataTypeException with the given message and cause
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
InvalidDataTypeExceptionpublic InvalidDataTypeException()Constructor.
- 
InvalidDataTypeExceptionConstructor- Parameters:
- dt- the data type that is invalid for the operation being performed.
 
- 
InvalidDataTypeExceptionConstructor- Parameters:
- message- detailed message explaining exception
 
- 
InvalidDataTypeExceptionConstruct a new InvalidDataTypeException with the given message and cause- Parameters:
- msg- the exception message
- cause- the exception cause
 
 
-