Sha256: b7a16fb05307d46ea43a3695f94b163a1234ecc5ce2c751481620210bcf36640
Contents?: true
Size: 208 Bytes
Versions: 6
Compression:
Stored size: 208 Bytes
Contents
module BuildMaster class FileNotFoundError < StandardError attr_reader :pathname def initialize(pathname) @pathname = pathname end def message "file not found: #{pathname}" end end end
Version data entries
6 entries across 6 versions & 1 rubygems