Exception: Cucumber::FileException

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/cucumber/runtime.rb

Direct Known Subclasses

FileNotFoundException

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(original_exception, path) ⇒ FileException

Returns a new instance of FileException.



28
29
30
31
# File 'lib/cucumber/runtime.rb', line 28

def initialize(original_exception, path)
  @path = path
  super(original_exception)
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



26
27
28
# File 'lib/cucumber/runtime.rb', line 26

def path
  @path
end