class MotherBrain::FileNotFound

Public Class Methods

new(path) click to toggle source
# File lib/mb/errors.rb, line 475
def initialize(path)
  @path = path
end

Public Instance Methods

message() click to toggle source
# File lib/mb/errors.rb, line 479
def message
  "File does not exist: #{path}"
end