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