1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[AWS/elasticache] Minor fix from RDS copy/pasta

Use Fog::AWS::Elasticache::NotFound instead of RDS
This commit is contained in:
Brian Nelson 2014-02-12 18:19:33 -08:00
parent 17181ae75c
commit bf41e54dad

View file

@ -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