class RorVsWild::Agent
def ignored_exception?(exception)
def ignored_exception?(exception) return false unless config[:ignore_exceptions] class_name = exception.class.to_s config[:ignore_exceptions].any? { |str_or_regex| str_or_regex === class_name } end