class Fuse::Exception::SourceUnknown::NotFound

Attributes

path[R]

Public Class Methods

new(path) click to toggle source
# File lib/fuse/exceptions.rb, line 12
def initialize(path)
  @path = path
end

Public Instance Methods

message() click to toggle source
# File lib/fuse/exceptions.rb, line 15
def message; "Couldn't find '#{path}'." end