HSL2.0 - Exceptions
How are exceptions handled?

All method calls are encapsulated by the framework with try..except; caught exceptions are displayed on the debug page.

In the example of the division module only the "division by 0" exception is explicitly caught. In this case the block runs through correctly and sends a '1' on output 2.
Should another exception occur at this point, it would first be caught by the framework.

An example of the implementation of a division module is enclosed 10703_MyBaseModule_03.py