Package ghidra.program.model.scalar
Class ScalarOverflowException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- ghidra.program.model.scalar.ScalarOverflowException
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class ScalarOverflowException extends java.lang.RuntimeExceptionA ScalarOverflowException indicates that some precision would be lost. If the operation was signed, unused bits did not match the sign bit. If the operation was unsigned, unsed bits were not all zero - See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ScalarOverflowException()Constructs a ScalarOverflowException with no detail message.ScalarOverflowException(java.lang.String message)Constructs a ScalarOverflowException with the specified detail message.
 
- 
- 
- 
Constructor Detail- 
ScalarOverflowExceptionpublic ScalarOverflowException() Constructs a ScalarOverflowException with no detail message. 
 - 
ScalarOverflowExceptionpublic ScalarOverflowException(java.lang.String message) Constructs a ScalarOverflowException with the specified detail message. - Parameters:
- message- The message.
 
 
- 
 
-