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 SummaryConstructors Constructor Description VariableSizeException(java.lang.String msg)Constructor.VariableSizeException(java.lang.String msg, boolean canForce)Constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanForce()Returns true if the operation could be successful if forced.
 
- 
- 
- 
Constructor Detail- 
VariableSizeExceptionpublic VariableSizeException(java.lang.String msg) Constructor. The canForce value is assumed to be false.- Parameters:
- msg- message text
 
 - 
VariableSizeExceptionpublic VariableSizeException(java.lang.String msg, boolean canForce)Constructor.- Parameters:
- msg- message text
- canForce- if true conveys to the user that the operation may be successful if forced.
 
 
- 
 
-