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.
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
#path ⇒ Object (readonly)
Returns the value of attribute path.
26 27 28 |
# File 'lib/cucumber/runtime.rb', line 26 def path @path end |