# File lib/fusioncharts/exporter/fc_exporter.rb, line 197
  def class_exists?(class_name_str)
    begin
      true if class_name_str.constantize
    rescue NameError
      false
    end
  end