Exception: Cucumber::FileException
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Cucumber::FileException
- Defined in:
- lib/cucumber/runtime.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(original_exception, path) ⇒ FileException
constructor
A new instance of FileException.
Constructor Details
#initialize(original_exception, path) ⇒ FileException
Returns a new instance of FileException.
26 27 28 29 |
# File 'lib/cucumber/runtime.rb', line 26 def initialize(original_exception, path) super(original_exception) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path
24 25 26 |
# File 'lib/cucumber/runtime.rb', line 24 def path @path end |