Class: SmartCore::Container::ResolvingError

Inherits:
FetchError
  • Object
show all
Defined in:
lib/smart_core/container/errors.rb

Overview

See Also:

Since:

  • 0.1.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#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

Instance Attribute Details

#path_partString (readonly)

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.

Returns:

  • (String)

Since:

  • 0.1.0



52
53
54
# File 'lib/smart_core/container/errors.rb', line 52

def path_part
  @path_part
end