Skip to content
Jun Hanamaki edited this page Jun 7, 2015 · 1 revision

You can configure WFlow to rescue from unexpected errors (even though I wouldn't recommend it), which will log the exception message and terminate Process, setting it as failure.

To configure you just do the following:

WFlow::Configuration.config do |configuration|
  # indicates if it should supress errors for the user
  # defaults to false
  configuration.supress_errors = false
end
Clone this wiki locally