class AWS::S3::Errors::NoSuchKey
This error is special, because S3 does not return a body with the HTTP response. The interface is the same as for any other client error.
Public Class Methods
new(req, resp, code = nil, message = nil)
click to toggle source
Calls superclass method
AWS::Errors::Base.new
# File lib/aws/s3/errors.rb, line 72 def initialize(req, resp, code = nil, message = nil) super(req, resp, "NoSuchKey", "No Such Key") end