# File lib/parseconfig.rb, line 44
  def validate_config()  
    if !File.readable?(self.config_file)
      raise Errno::EACCES, "#{self.config_file} is not readable" 
    end
    
    # FIX ME: need to validate contents/structure?
  end