Exception: Chef::Exceptions::MissingRole

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/chef/exceptions.rb

Constant Summary collapse

NULL =
Object.new

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message_or_expansion = NULL) ⇒ MissingRole

Returns a new instance of MissingRole.



113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/chef/exceptions.rb', line 113

def initialize(message_or_expansion=NULL)
  @expansion = nil
  case message_or_expansion
  when NULL
    super()
  when String
    super
  when RunList::RunListExpansion
    @expansion = message_or_expansion
    missing_roles = @expansion.errors.join(', ')
    super("The expanded run list includes nonexistent roles: #{missing_roles}")
  end
end

Instance Attribute Details

#expansionObject (readonly)

Returns the value of attribute expansion.



111
112
113
# File 'lib/chef/exceptions.rb', line 111

def expansion
  @expansion
end