class Honeybadger::Config

def ignored_classes

def ignored_classes
  ignore_only = get(:'exceptions.ignore_only')
  return ignore_only if ignore_only
  return DEFAULTS[:'exceptions.ignore'] unless ignore = get(:'exceptions.ignore')
  DEFAULTS[:'exceptions.ignore'] | Array(ignore)
end