Exception: ViewModel::DeserializationError::DuplicateNodes

Inherits:
InvalidRequest show all
Defined in:
lib/view_model/deserialization_error.rb

Instance Attribute Summary collapse

Attributes inherited from AbstractErrorWithBlame

#nodes

Instance Method Summary collapse

Methods inherited from ViewModel::DeserializationError

#code

Methods inherited from AbstractError

#aggregation?, #causes, #code, #exception, #status, #title, #to_s, #view

Constructor Details

#initialize(type, nodes) ⇒ DuplicateNodes

Returns a new instance of DuplicateNodes.



215
216
217
218
# File 'lib/view_model/deserialization_error.rb', line 215

def initialize(type, nodes)
  @type = type
  super(nodes)
end

Instance Attribute Details

#typeObject (readonly)

Returns the value of attribute type.



213
214
215
# File 'lib/view_model/deserialization_error.rb', line 213

def type
  @type
end

Instance Method Details

#detailObject



220
221
222
# File 'lib/view_model/deserialization_error.rb', line 220

def detail
  "Duplicate views for the same '#{type}' specified: "+ nodes.map(&:to_s).join(", ")
end

#metaObject



224
225
226
# File 'lib/view_model/deserialization_error.rb', line 224

def meta
  super.merge(type: type)
end