class RorVsWild::Agent

def catch_error(context = nil, &block)

def catch_error(context = nil, &block)
  begin
    block.call
  rescue Exception => ex
    record_error(ex, context)
    ex
  end
end