module Sentry

def capture_exception(exception, **options, &block)

Returns:
  • (Event, nil) -

Other tags:
    Yieldparam: scope -
def capture_exception(exception, **options, &block)
  return unless initialized?
  get_current_hub.capture_exception(exception, **options, &block)
end