Package com.adobe.xfa.formcalc
Class CalcException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.adobe.xfa.formcalc.CalcException
-
- All Implemented Interfaces:
java.io.Serializable
public class CalcException extends java.lang.RuntimeException
Class CalcException defines the exception objects used by theCalcParser
(FormCalc scripting engine).Exception objects have but a single property: a
CalcSymbol
, which almost invariably is of type CalcTypeError. This architecture permits the FormCalc scripting engine to propagate errors easily up to the application, whenever errors are detected in the intermediate stages of the evaluatation of a FormCalc script.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CalcException(CalcSymbol oSym)
Instantiates a CalcException object, whose.
-
-
-
Constructor Detail
-
CalcException
public CalcException(CalcSymbol oSym)
Instantiates a CalcException object, whose. CalcSymbol property is a copy of the given object.- Parameters:
oSym
- the CalcParser object to be copied.
-
-