Exception: Cucumber::CucumberExpressions::InvalidParameterTypeName
- Inherits:
-
CucumberExpressionError
- Object
- StandardError
- CucumberExpressionError
- Cucumber::CucumberExpressions::InvalidParameterTypeName
- Defined in:
- lib/cucumber/cucumber_expressions/errors.rb
Instance Method Summary collapse
-
#initialize(type_name) ⇒ InvalidParameterTypeName
constructor
A new instance of InvalidParameterTypeName.
Methods inherited from CucumberExpressionError
#build_message, #point_at, #point_at_located
Constructor Details
#initialize(type_name) ⇒ InvalidParameterTypeName
Returns a new instance of InvalidParameterTypeName.
168 169 170 |
# File 'lib/cucumber/cucumber_expressions/errors.rb', line 168 def initialize(type_name) super("Illegal character in parameter name {#{type_name}}. Parameter names may not contain '{', '}', '(', ')', '\\' or '/'") end |