Exception: Bolt::Inventory::ValidationError

Inherits:
Error
  • Object
show all
Defined in:
lib/bolt/inventory.rb

Instance Attribute Summary collapse

Attributes inherited from Error

#error_code, #issue_code, #kind

Instance Method Summary collapse

Methods inherited from Error

#msg, #to_h, #to_json, #to_puppet_error, unknown_plan, unknown_task

Constructor Details

#initialize(message, offending_group) ⇒ ValidationError

Returns a new instance of ValidationError.



19
20
21
22
23
# File 'lib/bolt/inventory.rb', line 19

def initialize(message, offending_group)
  super(message, 'bolt.inventory/validation-error')
  @_message = message
  @path = [offending_group].compact
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



17
18
19
# File 'lib/bolt/inventory.rb', line 17

def path
  @path
end

Instance Method Details

#add_parent(parent_group) ⇒ Object



29
30
31
# File 'lib/bolt/inventory.rb', line 29

def add_parent(parent_group)
  @path << parent_group
end

#detailsObject



25
26
27
# File 'lib/bolt/inventory.rb', line 25

def details
  { 'path' => path }
end

#messageObject



33
34
35
36
37
38
39
# File 'lib/bolt/inventory.rb', line 33

def message
  if path.empty?
    @_message
  else
    "#{@_message} for group at #{path}"
  end
end