class RubyLLM::Error

def initialize(response = nil, message = nil)

def initialize(response = nil, message = nil)
  @response = response
  super(message || response&.body)
end