# File lib/chef_zero/data_store/raw_file_store.rb, line 82
      def get(path, request=nil)
        begin
          return IO.read(path_to(path))
        rescue Errno::ENOENT
          raise DataNotFoundError.new(path)
        end
      end