Exception: RobotLab::MCPError
- Defined in:
- lib/robot_lab/error.rb
Overview
Raised when MCP communication fails.
Instance Attribute Summary collapse
-
#retryable ⇒ Object
readonly
Returns the value of attribute retryable.
Instance Method Summary collapse
-
#initialize(message = nil, retryable: nil) ⇒ MCPError
constructor
A new instance of MCPError.
Constructor Details
#initialize(message = nil, retryable: nil) ⇒ MCPError
Returns a new instance of MCPError.
37 38 39 40 |
# File 'lib/robot_lab/error.rb', line 37 def initialize( = nil, retryable: nil) @retryable = retryable super() end |
Instance Attribute Details
#retryable ⇒ Object (readonly)
Returns the value of attribute retryable.
35 36 37 |
# File 'lib/robot_lab/error.rb', line 35 def retryable @retryable end |