diff options
author | ser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-07 13:21:39 +0000 |
---|---|---|
committer | ser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-07 13:21:39 +0000 |
commit | 0fcc88d07c3e1523be994f1f67bf3eaef1e74e07 (patch) | |
tree | e235a9d6ba9688b70dc90d5b8fc21c6fa6c64206 /lib/rexml/validation/validationexception.rb | |
parent | 77e092c31c933c243b85b6d228e93e5de239bde1 (diff) |
These validation files for REXML need to be included in the main branch.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/validation/validationexception.rb')
-rw-r--r-- | lib/rexml/validation/validationexception.rb | 9 |
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 0000000000..4723d9e4d3 --- /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 |