Method: Awspec::NoExistingResource#initialize
- Defined in:
- lib/awspec/error.rb
#initialize(resource_type, id) ⇒ NoExistingResource
Overrides the superclass initialize method to include more information and default error message. Expected parameters:
-
resource_type: the name of the resource type. Probably the class method return is the best option to be used.
-
id: the string used to search for the AWS resource. It will vary depending on the resource type, but probably
will be an string.
25 26 27 28 29 30 |
# File 'lib/awspec/error.rb', line 25 def initialize(resource_type, id) @resource_type = resource_type @id = id = "The resource type #{resource_type} with id #{id} does not exist" super end |