Class: Workato::Connector::Sdk::UndefinedStdLibMethodError
- Inherits:
-
RuntimeError
- Object
- Workato::Connector::Sdk::UndefinedStdLibMethodError
- Defined in:
- lib/workato/connector/sdk/errors.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#package ⇒ Object
readonly
Returns the value of attribute package.
Instance Method Summary collapse
-
#initialize(name, package) ⇒ UndefinedStdLibMethodError
constructor
A new instance of UndefinedStdLibMethodError.
Constructor Details
#initialize(name, package) ⇒ UndefinedStdLibMethodError
Returns a new instance of UndefinedStdLibMethodError.
140 141 142 143 144 |
# File 'lib/workato/connector/sdk/errors.rb', line 140 def initialize(name, package) @name = name @package = package super("Undefined method '#{name}' for \"#{package}\" namespace") end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
137 138 139 |
# File 'lib/workato/connector/sdk/errors.rb', line 137 def name @name end |
#package ⇒ Object (readonly)
Returns the value of attribute package.
138 139 140 |
# File 'lib/workato/connector/sdk/errors.rb', line 138 def package @package end |