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