2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2007-10-01 21:46:50 -04:00
|
|
|
require 'rexml/parseexception'
|
|
|
|
module REXML
|
|
|
|
class UndefinedNamespaceException < ParseException
|
|
|
|
def initialize( prefix, source, parser )
|
|
|
|
super( "Undefined prefix #{prefix} found" )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|