module Sentry

def exception_captured?(exc)

Returns:
  • (Boolean) -
def exception_captured?(exc)
  return false unless initialized?
  !!exc.instance_variable_get(CAPTURED_SIGNATURE)
end