summaryrefslogtreecommitdiffstats
path: root/lib/rexml/validation/validationexception.rb
diff options
context:
space:
mode:
authorser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-07 13:21:39 +0000
committerser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-07 13:21:39 +0000
commit516c9509af3dfe16b5656ed6695e28cd24f5e8d1 (patch)
treee235a9d6ba9688b70dc90d5b8fc21c6fa6c64206 /lib/rexml/validation/validationexception.rb
parent39d19fe360785b37cc1f81c13e5a2b7482739867 (diff)
downloadruby-516c9509af3dfe16b5656ed6695e28cd24f5e8d1.tar.gz
ruby-516c9509af3dfe16b5656ed6695e28cd24f5e8d1.tar.xz
ruby-516c9509af3dfe16b5656ed6695e28cd24f5e8d1.zip
These validation files for REXML need to be included in the main branch.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/validation/validationexception.rb')
-rw-r--r--lib/rexml/validation/validationexception.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/rexml/validation/validationexception.rb b/lib/rexml/validation/validationexception.rb
new file mode 100644
index 000000000..4723d9e4d
--- /dev/null
+++ b/lib/rexml/validation/validationexception.rb
@@ -0,0 +1,9 @@
+module REXML
+ module Validation
+ class ValidationException < RuntimeError
+ def initialize msg
+ super
+ end
+ end
+ end
+end