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:
Serializable
Class CalcException defines the exception objects used by the
CalcParser (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:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CalcException
Instantiates a CalcException object, whose. CalcSymbol property is a copy of the given object.- Parameters:
oSym- the CalcParser object to be copied.
-