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:
java.io.Serializable
public class InvalidDataTypeException extends UsrException
Exception thrown if a data type is not valid for the operation being performed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidDataTypeException()Constructor.InvalidDataTypeException(DataType dt)ConstructorInvalidDataTypeException(java.lang.String message)ConstructorInvalidDataTypeException(java.lang.String msg, java.lang.Throwable cause)Construct a new InvalidDataTypeException with the given message and cause
-
-
-
Constructor Detail
-
InvalidDataTypeException
public InvalidDataTypeException()
Constructor.
-
InvalidDataTypeException
public InvalidDataTypeException(DataType dt)
Constructor- Parameters:
dt- the data type that is invalid for the operation being performed.
-
InvalidDataTypeException
public InvalidDataTypeException(java.lang.String message)
Constructor- Parameters:
message- detailed message explaining exception
-
InvalidDataTypeException
public InvalidDataTypeException(java.lang.String msg, java.lang.Throwable cause)Construct a new InvalidDataTypeException with the given message and cause- Parameters:
msg- the exception messagecause- the exception cause
-
-