From 9a39093337c6632d46874460bd097e2da942144a Mon Sep 17 00:00:00 2001 From: ser Date: Tue, 2 Oct 2007 01:46:50 +0000 Subject: r1367@bean: ser | 2007-10-01 21:24:35 -0400 r1354@bean: ser | 2007-09-13 08:23:09 -0400 Eggbeater missed one. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/undefinednamespaceexception.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/rexml/undefinednamespaceexception.rb (limited to 'lib') diff --git a/lib/rexml/undefinednamespaceexception.rb b/lib/rexml/undefinednamespaceexception.rb new file mode 100644 index 0000000000..8ebfdfd0a9 --- /dev/null +++ b/lib/rexml/undefinednamespaceexception.rb @@ -0,0 +1,8 @@ +require 'rexml/parseexception' +module REXML + class UndefinedNamespaceException < ParseException + def initialize( prefix, source, parser ) + super( "Undefined prefix #{prefix} found" ) + end + end +end -- cgit v1.2.3