Exception: TreasureData::AlreadyExistsError
- Inherits:
-
ClientError
- Object
- StandardError
- APIError
- ClientError
- TreasureData::AlreadyExistsError
- Defined in:
- lib/td/client/api_error.rb
Overview
409 Conflict
Instance Attribute Summary collapse
-
#conflicts_with ⇒ Object
readonly
Returns the value of attribute conflicts_with.
Attributes inherited from APIError
Instance Method Summary collapse
-
#initialize(error_message = nil, api_backtrace = nil, conflicts_with = nil) ⇒ AlreadyExistsError
constructor
A new instance of AlreadyExistsError.
Constructor Details
#initialize(error_message = nil, api_backtrace = nil, conflicts_with = nil) ⇒ AlreadyExistsError
Returns a new instance of AlreadyExistsError.
43 44 45 46 |
# File 'lib/td/client/api_error.rb', line 43 def initialize( = nil, api_backtrace = nil, conflicts_with=nil) super(, api_backtrace) @conflicts_with = conflicts_with end |
Instance Attribute Details
#conflicts_with ⇒ Object (readonly)
Returns the value of attribute conflicts_with.
42 43 44 |
# File 'lib/td/client/api_error.rb', line 42 def conflicts_with @conflicts_with end |