38ae064b8a
Sam Ruby has been doing a bang-up job fixing the bugs in REXML. Who knows when these improvements will trickle down to vendor distributions of Ruby. In the meantime, let's bundle the latest version of REXML with Instiki. We check the version number of the bundled REXML against that of the System REXML, and use whichever is later.
9 lines
210 B
Ruby
9 lines
210 B
Ruby
require 'rexml/parseexception'
|
|
module REXML
|
|
class UndefinedNamespaceException < ParseException
|
|
def initialize( prefix, source, parser )
|
|
super( "Undefined prefix #{prefix} found" )
|
|
end
|
|
end
|
|
end
|