Sha256: 5e1be249dec81ef096dfcd6ba8e024c2d3d056351413e846e6dbdd19c58ed198
Contents?: true
Size: 335 Bytes
Versions: 36
Compression:
Stored size: 335 Bytes
Contents
module Fig # A (possibly remote) file that was looked for was not found. This may or # may not actually be a problem; i.e. this may be the result of an existence # test. class FileNotFoundError < StandardError attr_reader :path def initialize(message, path) super(message) @path = path end end end
Version data entries
36 entries across 36 versions & 1 rubygems