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
Source
# File lib/hocon/impl/parseable.rb, line 333 def initialize(what, message, options) super() @what = what @message = message post_construct(options) end
Calls superclass method
Hocon::Impl::Parseable::new
Public Instance Methods
Source
# File lib/hocon/impl/parseable.rb, line 344 def create_origin Hocon::Impl::SimpleConfigOrigin.new_simple(@what) end
Source
# File lib/hocon/impl/parseable.rb, line 340 def custom_reader raise Hocon::ConfigError::ConfigBugOrBrokenError, @message end