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

Merge pull request #752 from freeformz/iam_mocks

missing raise
This commit is contained in:
Dan Peterson 2012-02-17 16:35:25 -08:00
commit a61fa4bb04

View file

@ -52,7 +52,7 @@ module Fog
response.status = 200
end
else
Fog::AWS::IAM::NotFound.new("The user with name #{user} cannot be found.")
raise Fog::AWS::IAM::NotFound.new("The user with name #{user} cannot be found.")
end
end
end