Exception: AgentHarness::ExtensionCompatibilityError
- Inherits:
-
ConfigurationError
- Object
- StandardError
- Error
- ConfigurationError
- AgentHarness::ExtensionCompatibilityError
- Defined in:
- lib/agent_harness/errors.rb
Instance Attribute Summary collapse
-
#extension ⇒ Object
readonly
Returns the value of attribute extension.
-
#provider ⇒ Object
readonly
Returns the value of attribute provider.
-
#report ⇒ Object
readonly
Returns the value of attribute report.
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(message = nil, provider: nil, extension: nil, report: nil, **kwargs) ⇒ ExtensionCompatibilityError
constructor
A new instance of ExtensionCompatibilityError.
Constructor Details
#initialize(message = nil, provider: nil, extension: nil, report: nil, **kwargs) ⇒ ExtensionCompatibilityError
Returns a new instance of ExtensionCompatibilityError.
78 79 80 81 82 83 |
# File 'lib/agent_harness/errors.rb', line 78 def initialize( = nil, provider: nil, extension: nil, report: nil, **kwargs) @provider = provider @extension = extension @report = report super(, **kwargs) end |
Instance Attribute Details
#extension ⇒ Object (readonly)
Returns the value of attribute extension.
76 77 78 |
# File 'lib/agent_harness/errors.rb', line 76 def extension @extension end |
#provider ⇒ Object (readonly)
Returns the value of attribute provider.
76 77 78 |
# File 'lib/agent_harness/errors.rb', line 76 def provider @provider end |
#report ⇒ Object (readonly)
Returns the value of attribute report.
76 77 78 |
# File 'lib/agent_harness/errors.rb', line 76 def report @report end |