class Chef::Provisioning::AWSDriver::Exceptions::MultipleSecurityGroupError

Public Class Methods

new(name, groups) click to toggle source
Calls superclass method
# File lib/chef/provisioning/aws_driver/exceptions.rb, line 6
def initialize(name, groups)
  super "Found security groups with ids [#{groups.map(&:id)}] that share name #{name}. " \
    "Names are unique within VPCs - specify VPC to find by name."
end