This error is special, because S3 does not (and must not according to RFC 2616) return a body with the HTTP response. The interface is the same as for any other client error.
# File lib/aws/s3/errors.rb, line 57 def initialize(req, resp) super(req, resp, "Not Modified") end
# File lib/aws/s3/errors.rb, line 55 def code; "NotModified"; end