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 | e390b5f31f73a0d8776404d8722ab364358b2587 (patch) | |
| tree | 6fc9fbd25ce78f9f93faedbdd00a89ab4761b983 /lib/rexml | |
| parent | dc8b79ade4fafba84fa6a4ba57b0c04647ce11b9 (diff) | |
| download | ruby-e390b5f31f73a0d8776404d8722ab364358b2587.tar.gz ruby-e390b5f31f73a0d8776404d8722ab364358b2587.tar.xz ruby-e390b5f31f73a0d8776404d8722ab364358b2587.zip | |
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: http://svn.ruby-lang.org/repos/ruby/trunk@13596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml')
| -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 000000000..8ebfdfd0a --- /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 |
