Await your arrival...
With simple survival.
- Dan Fogelberg
aztec.system.OverflowException
public class OverflowException from<MathException>
Base
Event
ExceptionEvent
MathException
OverflowException
The OverflowException class is fired by the system when an overflow condition occurs within an Aztec expression. Many Integer and floating point expressions can cause overflows, and enumerations can also cause an overflow if the Dec() or Inc() methods try to move past either end of the enumeration list, an overflow will also occur.
Overflow exception events are created and fired internally by the Aztec VM when it encounters overflow math errors. These exceptions can occur using primitive methods and using Aztec operators. Overflow exceptions can also be manually created and fired by user defined code.
OverflowException Methods
Derived Classes
None
See Also
Class Hierarchy, Primitive Framework, DomainException, DivideByZeroException
OverflowException()
public method OverflowException(float Value, float Value2, int OperatorId, bool IsFloatExpression = true)
Parameters
Value1
The first value in the expression
Value2
The second value in the expression (if applicable)
OperatorId
Integer Id associated with operator which encountered the math error
IsFloatExpression
True if float expression and false if not (true by default)
Return Value
None
Description
Constructor for the OverflowException class.
OverflowException Class