module Appsignal::Integrations::WebmachinePlugin::FSM

def handle_exceptions_with_appsignal

def handle_exceptions_with_appsignal
  handle_exceptions_without_appsignal do
    begin
      yield
    rescue Exception => e # rubocop:disable Lint/RescueException
      Appsignal.set_error(e)
      raise e
    end
  end
end