Exception: Durable::Llm::ConfigurationError

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

Overview

Error raised when there is a configuration problem.

This occurs when required configuration is missing, invalid, or inconsistent. Users should check their configuration settings.

Examples:

Handling configuration errors

begin
  client = Durable::Llm::Client.new(api_key: nil)
rescue Durable::Llm::ConfigurationError => e
  puts "Configuration error: #{e.message}"
end