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.RuntimeException
A 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 Summary
Constructors 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
-
ScalarOverflowException
public ScalarOverflowException()
Constructs a ScalarOverflowException with no detail message.
-
ScalarOverflowException
public ScalarOverflowException(java.lang.String message)
Constructs a ScalarOverflowException with the specified detail message.
- Parameters:
message
- The message.
-
-