Exception: Rubino::Interrupted

Inherits:
Error
  • Object
show all
Defined in:
lib/rubino/errors.rb

Overview

User interrupted an in-progress LLM turn (Esc / Ctrl+C in the chat TUI). Caught by the Loop/Lifecycle so partial content can still be persisted and the UI can return to a ready state cleanly.

Instance Method Summary collapse

Constructor Details

#initialize(message = "interrupted by user") ⇒ Interrupted

Returns a new instance of Interrupted.



67
68
69
# File 'lib/rubino/errors.rb', line 67

def initialize(message = "interrupted by user")
  super
end