Sha256: 4f19e31c271bc0f42b9b6fdf089cba81f6ceade64ae7bff8512cd3c96f56d077
Contents?: true
Size: 352 Bytes
Versions: 15
Compression:
Stored size: 352 Bytes
Contents
# coding: utf-8 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
15 entries across 15 versions & 1 rubygems