Exception: Vigiles::ConversationRecorder::MisconfiguredRecorderError
- Inherits:
-
StandardError
- Object
- StandardError
- Vigiles::ConversationRecorder::MisconfiguredRecorderError
- Defined in:
- lib/vigiles/conversation_recorder.rb
Instance Attribute Summary collapse
-
#actual ⇒ Object
readonly
Returns the value of attribute actual.
-
#expected ⇒ Object
readonly
Returns the value of attribute expected.
Instance Method Summary collapse
-
#initialize(expected:, actual:) ⇒ MisconfiguredRecorderError
constructor
A new instance of MisconfiguredRecorderError.
Constructor Details
#initialize(expected:, actual:) ⇒ MisconfiguredRecorderError
Returns a new instance of MisconfiguredRecorderError.
14 15 16 17 18 |
# File 'lib/vigiles/conversation_recorder.rb', line 14 def initialize(expected:, actual:) @expected = expected @actual = actual super end |
Instance Attribute Details
#actual ⇒ Object (readonly)
Returns the value of attribute actual.
11 12 13 |
# File 'lib/vigiles/conversation_recorder.rb', line 11 def actual @actual end |
#expected ⇒ Object (readonly)
Returns the value of attribute expected.
8 9 10 |
# File 'lib/vigiles/conversation_recorder.rb', line 8 def expected @expected end |