Exception: Proscenium::PathResolutionFailed

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

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ PathResolutionFailed

Returns a new instance of PathResolutionFailed.



63
64
65
66
# File 'lib/proscenium.rb', line 63

def initialize(path)
  @path = path
  super
end

Instance Method Details

#messageObject



68
69
70
# File 'lib/proscenium.rb', line 68

def message
  "Path #{@path.inspect} cannot be resolved"
end