TriggerReactor

TriggerReactor

24.6k Downloads

CATCH statement only execute first line.

son-daehyeon opened this issue ยท 0 comments

commented

Example

TRY
    err.cause()        // throwing error
CATCH e
    #LOG "First Line."
    #LOG "Second Line."
ENDTRY

Except Output:

> First Line.
> Second Line.

Actual Output:

> First Line.