Class: Lutaml::Model::LiquidClassNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/lutaml/model/error/liquid_class_not_found_error.rb

Instance Method Summary collapse

Constructor Details

#initialize(class_name) ⇒ LiquidClassNotFoundError

Returns a new instance of LiquidClassNotFoundError.



4
5
6
# File 'lib/lutaml/model/error/liquid_class_not_found_error.rb', line 4

def initialize(class_name)
  super("Liquid class '#{class_name}' is not defined in memory. Please ensure the class is loaded before using it.")
end