blob: 8ebfdfd0a9596f7b3e01c3391717b4303f76de5e (
plain)
1
2
3
4
5
6
7
8
|
require 'rexml/parseexception'
module REXML
class UndefinedNamespaceException < ParseException
def initialize( prefix, source, parser )
super( "Undefined prefix #{prefix} found" )
end
end
end
|