class NdrImport::Helpers::File::XmlStreaming::NestingError

Raised if nested tags are accounted which the streaming approach cannnot handle.

Public Class Methods

new(node) click to toggle source
Calls superclass method
# File lib/ndr_import/helpers/file/xml_streaming.rb, line 22
          def initialize(node)
            super <<~STR
              Element '#{node.name}' was found nested inside another of the same type.
              This is not accessible, and a known limitation of XmlStreaming.
            STR
          end