From bf41e54dadbf3b1cafbad86975200c0ef7293484 Mon Sep 17 00:00:00 2001 From: Brian Nelson Date: Wed, 12 Feb 2014 18:19:33 -0800 Subject: [PATCH] [AWS/elasticache] Minor fix from RDS copy/pasta Use Fog::AWS::Elasticache::NotFound instead of RDS --- .../aws/requests/elasticache/delete_cache_parameter_group.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb b/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb index 83c54621b..a77efd871 100644 --- a/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb +++ b/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb @@ -32,7 +32,7 @@ module Fog } response else - raise Fog::AWS::RDS::NotFound.new("CacheParameterGroup not found: #{name}") + raise Fog::AWS::Elasticache::NotFound.new("CacheParameterGroup not found: #{name}") end end end