Exception: AgentHarness::AuthenticationError
- Defined in:
- lib/agent_harness/errors.rb
Overview
Authentication errors
Instance Attribute Summary collapse
-
#provider ⇒ Object
readonly
Returns the value of attribute provider.
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(message = nil, provider: nil, **kwargs) ⇒ AuthenticationError
constructor
A new instance of AuthenticationError.
Constructor Details
#initialize(message = nil, provider: nil, **kwargs) ⇒ AuthenticationError
Returns a new instance of AuthenticationError.
51 52 53 54 |
# File 'lib/agent_harness/errors.rb', line 51 def initialize( = nil, provider: nil, **kwargs) @provider = provider super(, **kwargs) end |
Instance Attribute Details
#provider ⇒ Object (readonly)
Returns the value of attribute provider.
49 50 51 |
# File 'lib/agent_harness/errors.rb', line 49 def provider @provider end |