Class: Aws::Neptunedata::Errors::S3Exception

Inherits:
ServiceError
  • Object
show all
Defined in:
lib/aws-sdk-neptunedata/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(context, message, data = Aws::EmptyStructure.new) ⇒ S3Exception

Returns a new instance of S3Exception.

Parameters:



910
911
912
# File 'lib/aws-sdk-neptunedata/errors.rb', line 910

def initialize(context, message, data = Aws::EmptyStructure.new)
  super(context, message, data)
end

Instance Method Details

#codeString

Returns:

  • (String)


931
932
933
# File 'lib/aws-sdk-neptunedata/errors.rb', line 931

def code
  @code || @data[:code]
end

#detailed_message(**kwargs) ⇒ String

Note:

This member shadows Exception#detailed_message on Ruby 3.2+. Use ‘error.data.detailed_message` to access the API member directly.

Returns:

  • (String)


917
918
919
920
921
922
923
# File 'lib/aws-sdk-neptunedata/errors.rb', line 917

def detailed_message(**kwargs)
  if kwargs.empty?
    @data[:detailed_message]
  else
    super
  end
end

#request_idString

Returns:

  • (String)


926
927
928
# File 'lib/aws-sdk-neptunedata/errors.rb', line 926

def request_id
  @data[:request_id]
end

#retryable?Boolean

Returns:

  • (Boolean)


935
936
937
# File 'lib/aws-sdk-neptunedata/errors.rb', line 935

def retryable?
  true
end