Exception: ClaudeCli::Error
- Inherits:
-
StandardError
- Object
- StandardError
- ClaudeCli::Error
- Defined in:
- app/services/claude_cli.rb
Instance Attribute Summary collapse
-
#detail ⇒ Object
readonly
Human message in #message; raw technical payload in #detail (shown only behind a disclosure in the timeline).
Instance Method Summary collapse
-
#initialize(message, detail: nil) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(message, detail: nil) ⇒ Error
Returns a new instance of Error.
14 15 16 17 |
# File 'app/services/claude_cli.rb', line 14 def initialize(, detail: nil) super() @detail = detail end |
Instance Attribute Details
#detail ⇒ Object (readonly)
Human message in #message; raw technical payload in #detail (shown only behind a disclosure in the timeline).
12 13 14 |
# File 'app/services/claude_cli.rb', line 12 def detail @detail end |