class Chance::FileNotFoundError

Attributes

path[R]

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File vendor/chance/lib/chance/instance.rb, line 24
def initialize(path)
  @path = path
  super(message)
end

Public Instance Methods

message() click to toggle source
# File vendor/chance/lib/chance/instance.rb, line 29
def message
  "File not mapped in Chance instance: #{path}"
end