class Sentry::Configuration

def excluded_exception?(incoming_exception)

def excluded_exception?(incoming_exception)
  excluded_exception_classes.any? do |excluded_exception|
    matches_exception?(excluded_exception, incoming_exception)
  end
end