Package ghidra.program.model.listing
Class VariableSizeException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- ghidra.util.exception.UsrException
 - 
- ghidra.util.exception.InvalidInputException
 - 
- ghidra.program.model.listing.VariableSizeException
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable
public class VariableSizeException extends InvalidInputException
VariableSizeExceptionis thrown when a variable data-type exceeds storage constraints.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description VariableSizeException(java.lang.String msg)Constructor.VariableSizeException(java.lang.String msg, boolean canForce)Constructor. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanForce()Returns true if the operation could be successful if forced. 
 - 
 
- 
- 
Constructor Detail
- 
VariableSizeException
public VariableSizeException(java.lang.String msg)
Constructor. The canForce value is assumed to be false.- Parameters:
 msg- message text
 
- 
VariableSizeException
public VariableSizeException(java.lang.String msg, boolean canForce)Constructor.- Parameters:
 msg- message textcanForce- if true conveys to the user that the operation may be successful if forced.
 
 - 
 
 -