Class: Workato::Connector::Sdk::UndefinedMethodError
- Inherits:
-
InvalidDefinitionError
- Object
- Workato::Connector::Sdk::UndefinedMethodError
- Defined in:
- lib/workato/connector/sdk/errors.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name) ⇒ UndefinedMethodError
constructor
A new instance of UndefinedMethodError.
Constructor Details
#initialize(name) ⇒ UndefinedMethodError
Returns a new instance of UndefinedMethodError.
46 47 48 49 |
# File 'lib/workato/connector/sdk/errors.rb', line 46 def initialize(name) super("Method '#{name}' does not exists") @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
44 45 46 |
# File 'lib/workato/connector/sdk/errors.rb', line 44 def name @name end |