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.



217
218
219
220
# File 'lib/view_model/deserialization_error.rb', line 217

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

Instance Attribute Details

#typeObject (readonly)

Returns the value of attribute type.



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

def type
  @type
end

Instance Method Details

#detailObject



222
223
224
# File 'lib/view_model/deserialization_error.rb', line 222

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

#metaObject



226
227
228
# File 'lib/view_model/deserialization_error.rb', line 226

def meta
  super.merge(type: type)
end