class NdrImport::Xml::UnmappedXpathError

Raised if an unmapped xpath is identified

Attributes

missing_xpaths[R]

Public Class Methods

new(missing_xpaths) click to toggle source
Calls superclass method
# File lib/ndr_import/xml/unmapped_xpath_error.rb, line 7
def initialize(missing_xpaths)
  @missing_xpaths = missing_xpaths
  message         = "Unmapped xpath(s): #{missing_xpaths}"

  super(message)
end