Class: Aws::Account::Errors::InternalServerException

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

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of InternalServerException.

Parameters:



89
90
91
# File 'gems/aws-sdk-account/lib/aws-sdk-account/errors.rb', line 89

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

Instance Method Details

#error_typeString

Returns:

  • (String)


94
95
96
# File 'gems/aws-sdk-account/lib/aws-sdk-account/errors.rb', line 94

def error_type
  @data[:error_type]
end

#messageString

Returns:

  • (String)


99
100
101
# File 'gems/aws-sdk-account/lib/aws-sdk-account/errors.rb', line 99

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

#retryable?Boolean

Returns:

  • (Boolean)


103
104
105
# File 'gems/aws-sdk-account/lib/aws-sdk-account/errors.rb', line 103

def retryable?
  true
end