CTL2 also provides a simple mechanism for catching and handling possible errors.
However, CTL2 differs from CTL1 as regards handling errors.
It does not use the try-catch
statement.
It only uses a set of optional OnError()
functions that
exist to each required transformation function.
For example, for required functions (e.g., append()
, transform()
, etc.),
there exist following optional functions:
appendOnError()
, transformOnError()
, etc.
Each of these required functions may have its (optional) counterpart
whose name differs from the original (required) by adding the OnError
suffix.
Moreover, every <required ctl template function>OnError()
function
returns the same values as the original required function.
This way, any exception that is thrown by the original required function causes call of
its <required ctl template function>OnError()
counterpart
(e.g., transform()
fail may call transformOnError()
, etc.).
In this transformOnError()
, any incorrect code can be fixed,
an error message can be printed to the Console, etc.
Important | |
---|---|
Remember that these If you want some |