gxg-web-client/gxg/deps/rexml/undefinednamespaceexception.rb
2021-11-16 08:58:51 -08:00

9 lines
246 B
Ruby

# frozen_string_literal: false
require 'deps/rexml/parseexception'
module REXML
class UndefinedNamespaceException < ParseException
def initialize( prefix, source, parser )
super( "Undefined prefix #{prefix} found" )
end
end
end