# File lib/parseconfig.rb, line 45
  def validate_config()
    unless File.readable?(self.config_file)
      raise Errno::EACCES, "#{self.config_file} is not readable"
    end

    # FIX ME: need to validate contents/structure?
  end