Method: Config#get_string

Defined in:
lib/hocon/config.rb

#get_string(path) ⇒ Object

Returns the string value at the requested path.

Parameters:

  • path

    path expression

Returns:

  • the string value at the requested path

Raises:



516
517
518
# File 'lib/hocon/config.rb', line 516

def get_string(path)
  raise Hocon::ConfigError::ConfigBugOrBrokenError, "subclasses of `Config` must implement `get_string` (#{self.class})"
end