class ViewModel::DeserializationError::ReadOnlyAttribute

def detail

def detail
  "Cannot edit read only attribute '#{attribute}'"
end

def initialize(attribute, node)

def initialize(attribute, node)
  @attribute = attribute
  super([node])
end

def meta

def meta
  super.merge(attribute: attribute)
end