diff options
author | ser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-02 01:46:50 +0000 |
---|---|---|
committer | ser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-02 01:46:50 +0000 |
commit | 9a39093337c6632d46874460bd097e2da942144a (patch) | |
tree | 6fc9fbd25ce78f9f93faedbdd00a89ab4761b983 /lib/rexml/undefinednamespaceexception.rb | |
parent | 9acf1749fb72fead34f9d5a7bf07b77891199680 (diff) |
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
Diffstat (limited to 'lib/rexml/undefinednamespaceexception.rb')
-rw-r--r-- | lib/rexml/undefinednamespaceexception.rb | 8 |
1 files changed, 8 insertions, 0 deletions
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 |