Exception: Proscenium::SideLoad::NotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/proscenium/side_load.rb

Instance Method Summary collapse

Constructor Details

#initialize(pathname) ⇒ NotFound

Returns a new instance of NotFound.



9
10
11
12
# File 'lib/proscenium/side_load.rb', line 9

def initialize(pathname)
  @pathname = pathname
  super
end

Instance Method Details

#messageObject



14
15
16
# File 'lib/proscenium/side_load.rb', line 14

def message
  "#{@pathname} does not exist"
end