Exception: RubyLLM::Schema::InvalidSchemaTypeError

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

Overview

Raised when an invalid schema type is specified

Instance Method Summary collapse

Constructor Details

#initialize(type) ⇒ InvalidSchemaTypeError

Returns a new instance of InvalidSchemaTypeError.



10
11
12
# File 'lib/ruby_llm/schema/errors.rb', line 10

def initialize(type)
  super("Unknown schema type: #{type}")
end