Method: SmartCore::Container::ResolvingError#initialize

Defined in:
lib/smart_core/container/errors.rb

#initialize(message = nil, path_part:) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • message (String) (defaults to: nil)
  • path_part (String)

Since:

  • 0.1.0

Version:

  • 0.4.0



61
62
63
64
# File 'lib/smart_core/container/errors.rb', line 61

def initialize(message = nil, path_part:)
  @path_part = path_part
  super(message)
end