Sha256: d2e210a78c2881375d2cf5fd1560e731b8e4aeae3ed8f59fc333f547fb587e56

Contents?: true

Size: 202 Bytes

Versions: 1

Compression:

Stored size: 202 Bytes

Contents

module Cotta
class FileNotFoundError < StandardError
  attr_reader :pathname
  
  def initialize(pathname)
    @pathname = pathname
  end
  
  def message
    "file not found: #{pathname}"
  end
end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cotta-1.0.0 lib/cotta/file_not_found_error.rb