class Cucumber::FeatureFolderNotFoundException

Public Class Methods

new(path) click to toggle source
# File lib/cucumber/runtime.rb, line 37
def initialize(path)
  @path = path
end

Public Instance Methods

message() click to toggle source
# File lib/cucumber/runtime.rb, line 41
def message
  "No such file or directory - #{@path}"
end