Class: Aws::NimbleStudio::Errors::InternalServerErrorException

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

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of InternalServerErrorException.

Parameters:



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

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

Instance Method Details

#codeString

Returns:

  • (String)


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

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

#contextString

Returns:

  • (String)


109
110
111
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/errors.rb', line 109

def context
  @data[:context]
end

#messageString

Returns:

  • (String)


114
115
116
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/errors.rb', line 114

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

#retryable?Boolean

Returns:

  • (Boolean)


118
119
120
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/errors.rb', line 118

def retryable?
  true
end