class Hocon::Impl::AbstractConfigValue::NotPossibleToResolve
This exception means that a value is inherently not resolveable, at the moment the only known cause is a cycle of substitutions. This is a checked exception since it’s internal to the library and we want to be sure we handle it before passing it out to public API. This is only supposed to be thrown by the target of a cyclic reference and it’s supposed to be caught by the ConfigReference
looking up that reference, so it should be impossible for an outermost resolve() to throw this.
Contrast with ConfigException.NotResolved which just means nobody called resolve().
Attributes
Private Class Methods
Source
# File lib/hocon/impl/abstract_config_value.rb, line 43 def initialize(context) super("was not possible to resolve") @trace_string = context.trace_string end
Calls superclass method