iguana.stopOnError()

Normally when an error occurs in your script, Iguana will log the error and stop the component - unless you catch it with . However, there may be times you want to prevent a component from stopping when an error occurs.

iguana.stopOnError() enables and disables stopping a component so that Iguana can continue processing other messages after logging the error.

-- continue running the component iguana.stopOnError(false)

Â