class Hocon::Impl::Parseable::ParseableNotFound

this is a parseable that doesn’t exist and just throws when you try to parse it

Public Class Methods

new(what, message, options) click to toggle source
Calls superclass method Hocon::Impl::Parseable::new
# File lib/hocon/impl/parseable.rb, line 333
def initialize(what, message, options)
  super()
  @what = what
  @message = message
  post_construct(options)
end

Public Instance Methods

create_origin() click to toggle source
# File lib/hocon/impl/parseable.rb, line 344
def create_origin
  Hocon::Impl::SimpleConfigOrigin.new_simple(@what)
end
custom_reader() click to toggle source
# File lib/hocon/impl/parseable.rb, line 340
def custom_reader
  raise Hocon::ConfigError::ConfigBugOrBrokenError, @message
end