This file is indexed.

/usr/lib/ruby/vendor_ruby/multi_json/load_error.rb is in ruby-multi-json 1.8.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
module MultiJson
  class LoadError < StandardError
    attr_reader :data
    def initialize(message='', backtrace=[], data='')
      super(message)
      self.set_backtrace(backtrace)
      @data = data
    end
  end
  DecodeError = LoadError # Legacy support
end